...

/

Creating Our npm Package

Creating Our npm Package

Learn how to create an npm package for any project.

The Node Package Manager (npm) was created to help Node.js developers manage the lifecycle of coding, building, testing, and installing a fully featured Node.js application. It’s also designed to help developers manage the details of dependencies—other node packages used as part of a single application.

All projects—the work of creating APIs or applications in general—need more than just a list of modules used in that application. We need to handle building the code into something that can be released, testing and remote deployment, and/or local installation of the resulting application.

Most of the popular editing platforms integrated editing environments (IDEs) such as Eclipse, IntelliJ, Visual Studio, and others, have their own project management tools, too. That includes managing source code files, testing, building, and deployment. You may choose to use these platform tools instead of npm, and that’s fine. The important thing is that we use something that helps us keep everything related to our project organized and provides support for coding, building, testing, and releasing it in a safe and consistent way.

We can use the npm command-line utility to do the following tasks:

  • Create an npm package
  • Use npm to install other Node.js modules on our machine
  • Edit our npm package file directly
  • Use the npm start command to start our local Node.js application
...