© 2023 Hashnode
#npm-publish
Ever wondered how to create your own npm package, if so you are in the right place. In this article, I will give a walk-through for the creation of your first npm package. Before we jump right into co…
In my previous article on node.js modules, we discussed third-party modules or packages. This article will focus on the effective management of these modules by utilizing Node.js Package Manager (npm)…
Hi everyone 👋. In this article, I'm going to discuss how to push your own packages to the npm registry. Step 1: To publish npm packages you must have an npm user account. Sign up for an npm user account using https://www.npmjs.com/signup l…
React has become one of the most popular JavaScript libraries in recent years, thanks to its efficiency and flexibility. If you have developed a React library and want to share it with the world, publishing it on npm is a great way to do so…
I've just created my first NPM package and was searching the web for ways to automate the publishing step. I had the following requirements in mind: A single command from start to end. Every release …
How to publish your own npm package? Publishing a package may seem difficult, but believe me, it's as easy as uploading a file to GitHub. Even I wasn’t aware of it until I published one. It’s very simple and in this letter, I will show you …
This guide shows how to publish a node js package on npm. The package takes in a sheng word and returns a 'shembetenged' version. Sheng is a slang derived from Swahili. Shembeteng is derived from shen…
Introduction When you are creating your personal website or blog, it is great way to show off your Github profile in a way so other can see what you do and what can you do. If you are writing about s…
Requirements NodeJs installed on your machine A registered NPM account (if not, sign up here 👉 npmjs.com/signup) Let's get started Step 1 : Initiating package.json We will be building a simple pac…
In the previous article we used typescript complier to build the react component. In this one we will see how to build it using parcel. Parcel is a zero configuration build tool. checkout their amazin…