Rico Herwig

Results 20 comments of Rico Herwig

Including typescript with the according babel preset is not that hard, so it should be fine as an "opt-in" kind of thing. I personally like typescript, but would base the...

Never saw helmet before. I'm gonna take a look. As far as testing goes, I used jest and enzyme for most of my react apps. But anyways, testing examples sound...

No progress so far, as I was kinda busy the last few weeks. I will create a dedicated issue for that and implement in the upcoming days

I am actually working on a "real" PWA example right now. Forms, progressive images and routing is definitely part of it! However, auth and social sharing might be difficult to...

I'm not really sure... on the one hand, docker seems really nice. But there are lots of things to consider - like handling container restarts, clustering, ... Service like firebase...

Using a docker container is generally a good approach. However, I would suggest to use pm2 instead of the pure node executable.

I also reproduced this in a docker using node-alpine:20, running on Ubuntu 20. Downgrading to 1.2.0 did not solve the issue. EDIT: In my case, I was able to fix...

@aabmets A use case I know of is to switch the language via a dropdown. ```react export default function TheLanguageSwitch() { const { i18n } = useSyncLanguage(); const dropdownItems =...

My best guess without having seen the project or storybook's `main.ts` would be that storybook does not pickup on your tsconfig aliases. To test this, switch out the `~` for...

I was able to get it to work using the `@eslint/eslintrc` package and its `FlatCompat` utility. The relevant part in the sample below is the use of this utility. ```typescript...