The term ‘node’ is not recognized… In Powershell

These issues cannot be installed from the Package Manager console, so I had to browse lot of things to fix the issues and finally I got the solution. Maybe we followed these scenarios Missing Node.js software Wrongly updated Windows environment path Installed in the wrong path Old version of Node.js software You can download the … Read more

Should I publish my module’s source code on npm?

In my opinion, the best practice is to publish both minified code in dist folder and also the source code in src folder. One should also include other files such as package.json, package-lock.json, README.md, LICENSE.txt, CONTRIBUTING.md, etc which are at the root package directory. To achieve this, one should use files property in package.json to … Read more