#javascript
Read more stories on Hashnode
Articles with this tag
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...
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)...