Publishing To Npm Made Easy With Node
Publishing to npm is surprisingly easy and accessible. I used node to publish my package, initializing npm, whitelisting files, setting version, and that's it. Minor issues with README file took several updates to fix.
This one was really a cool thing to do. Having something I worked on be publicly available on npm. I though it something the only professional would be able to do, but I'm really surprised how easy and accessible publishing to npm is. As I mentioned above I used node to publish. I'm baffled how easy it is to publish on node. Just need to initialize npm, whitelist the files that I'm to publish, set the version and that's it. Publishing with Node Only issue I found in publishing is that I made small mistakes on the README.md file I published. So it took me several update version to fix the mino...