How to Switch Node Versions?

How to Switch Node Versions?

You might be working on many node projects on your device. You may be using different versions of Node for different projects. There could be an issue while running older projects in new version of node. As for example, let’s say you have created one project 2 years ago which is compatible with node version v14.17.6 . Now, you have updated the node version of your machine to v20.2.0. In this case, your older project might not work in the newer version of node....

May 18, 2023 · 2 min · 423 words · Prakash Bhandari
How to Publish Your Own Public NPM Package

How to Publish Your Own Public NPM Package?

Publishing your own public NPM package is not that hard. All you need is basic understanding of Javascript, NPM, package.json file and Account in https://www.npmjs.com In this post, I will try to explain the steps to create and publish your own public NPM package to https://www.npmjs.com. To demonstrate, I will create real NPM package which will convert English number to Nepali Number and Nepali number to English Number. Finally, this package will be publish to https://www....

December 1, 2022 · 8 min · 1624 words · Prakash Bhandari