How To Create And Publish npm Package

Introduction

In this article, we will learn about easy steps for creating and publishing your javascript or node js utility to npm package repository.

How did I get the idea for creating and publishing of npm packages?

Actually, I was working on creating a dashboard with charts. As most library charts have their own convention for passing data to generate charts e.g. tui-charts, highcharts etc., while preparing data I had to rename some keys as per the required convention.

 
I have to rename multiple keys from an array of an object. In C# or Dot Net, you have probably heard about the term "DTO - Data Transfer Object" or Automapper which provides this functionality in which it converts one class to another class type with required fields.
 
Here, I have searched for javascript and JSON utility library using underscore js and lodash as well, but I didn't find any solution,  so I created a utility function and published it on npm. So I can utilize this in my different projects and as it is on npm it can be useful to other developers as well.
 
Prerequisite
  • Nodejs and npm must be installed on System
  • A user must have a GitHub account on which he can store source code.
  • A user must have an account on npmjs
Step 1 - Create node module using npm init command
 
If you are using Windows system then you can open a command prompt with appropriate rights, or if you are a Linux user then you can open a terminal and run npm init command, 
  1. npm init  
When you hit the above command it will prompt some required and optional information regarding packages as per the below screenshot.

Note
Make sure your package name is unique in npm.js and it is available on npm.
 
How To Create And Publish npm Package 
 
Using npm init command one "package.json file" is created in a project folder.

Take a look at my package.json file for reference purposes,
  1. {  
  2.     "name""dto-utils",  
  3.     "version""0.0.1",  
  4.     "description""Inspired from Dot Net Data Transfer Object Concept, Utility contains method which rename keys in existing object using plain Javascript code.",  
  5.     "main""index.js",  
  6.     "scripts": {  
  7.         "test""echo \"Error: no test specified\" && exit 1"  
  8.     },  
  9.     "keywords": ["dto""rename keys""json""utility""utils""transform object"],  
  10.     "author""anomepani",  
  11.     "license""ISC"  
Step 2 - Open current directory in any text editor and add entry point file index.js.
  
I am using Visual Studio Code as the text editor.  To open a project or current project directory in vs code, type the below command or you can just right click on a folder and open in your favorite IDE or Text Editor.
  1. code .  
Now create an index.js file which is an entry for any npm package and add your utility method or code to an index.js file.

Take a look at my utility method or index.js file. 
  1. function DTO() {  
  2.     var dto = {};  
  3.     var isAllowKeyOverWrite = true;  
  4.     /** 
  5.      * function accept array of object and based on new key it update returning array of object with updated keys 
  6.      * @param {*} collection   Array of object 
  7.      * @param {*}   newKeyPair New key pair for old and new key  
  8.      * @param {*} overwrite Allow overwrite existing key or not 
  9.      */  
  10.     dto.mapTo = function (collection, newKeyPair, overwrite) {  
  11.         //TODO  Early exit check for invalid user input  
  12.         isAllowKeyOverWrite = overwrite !== undefined ? overwrite : isAllowKeyOverWrite;  
  13.         return collection.map(function (record) {  
  14.             // Clone new object to prevent modification of source object  
  15.             var item = Object.assign({}, record);  
  16.             for (var key in item) {  
  17.                 // Restrict key as undefined while dynamic rename/inject new key in object  
  18.                 // Restrict overwrite for existing key.  
  19.   
  20.                 if (newKeyPair[key]) {  
  21.   
  22.                     var isKeyExist = newKeyPair[key] in item;  
  23.                     if (!isKeyExist) {  
  24.                         // If new key is not exist then not need to check isAllowKeyOverWrite flag  
  25.                         //Check new key is already exist or not  
  26.                         item[newKeyPair[key]] = item[key];  
  27.                         //itm["" + newKeyPair[key]] = itm[key];  
  28.   
  29.                         //Once you injected key delete old key from object.  
  30.                         delete item[key];  
  31.                     } else if (isKeyExist && isAllowKeyOverWrite) {  
  32.   
  33.                         // If new key is exist ,also check isAllowKeyOverWrite flag  
  34.                         item[newKeyPair[key]] = item[key];  
  35.                         //TODO Need to verify and modify below code if required.  
  36.                         delete item[key];  
  37.                     }  
  38.                 }  
  39.             }  
  40.             // Deletion of old key code moved in above for loop  
  41.             // if (isKeyOverWrite) {  
  42.             //     for (var oldKey in newKeyPair) {  
  43.   
  44.             //         delete itm["" + oldKey];  
  45.             //     }  
  46.             // }  
  47.             return item;  
  48.         });  
  49.     };  
  50.     return dto;  
  51. }  
  52. module.exports = DTO();  
Step 3 - Time to create README.md file for project and check into github.
 
You can create a README.md file on GitHub directory by using "Create new file" button as per screenshot and update content to it as well.
 
As per the screenshot I have created a readme file for my project and also checked in to GitHub repository.

How To Create And Publish npm Package 
 
Before publishing a package to NPM it's required to commit and push your local changes on GitHub.
 
Reference link
  • https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
  • https://gist.github.com/mindplace/b4b094157d7a3be6afd2c96370d39fad
  • https://gist.github.com/c0ldlimit/4089101
 
Step 4 - As your package or utility is ready it's now time to publish the package.
 
Note
For publishing package, package name should be available an you can test by https://npmjs.com/package/<package>.
 
Type the below command in your terminal or in a command prompt at project directory. Once you run the below command it prompts for username, password and email address as per the below screenshot.
  1. npm adduser  
 How To Create And Publish npm Package
 
Once you successfully log in into npm.js you can type the below command for a publishing package.
  1. npm publish  
How To Create And Publish npm Package
 
That's it. Your package is now published at npmjs. 
  • Github repo link: https://github.com/anomepani/dto-utils 
  • Npm js package link: https://www.npmjs.com/package/dto-utils 
Hope you liked the article.

Conclusion

In this article, we have learned about how to create and publish your npm package with easy steps.


Similar Articles