Introduction When you open this article, I acquiesce that you know about monorepo, so I don't want to talk nonsense, let's start straight away. Create...
I've been working on an npm package for a while now, in an age of ESM and CJS going hand in hand, it is not enough that you add just one of these...
Recently, I've been working on a front-end project with i18n support, and I'd like to note the steps here. Step 1: Install dependency pnpm add...
Recently I wiped my Windows computer because of my cluttered config, and I'm here to tell you how to set up an elegant environment. configure shell At...
When you write a Node.js application using TypeScript, the default configuraion will treat the ESM package as CommonJS package, just like this: //...
I don't know if you've ever encountered an if-else nesting like a pyramid placed horizontally: if (true) { } if (true) { } if (true) { if (true)...