- Published on
Publish package on npm
- Author
- Name
- Igor Cangussu
- @Goduu_
Publishing a package to npm is a straightforward process, but it's important to ensure that your package is ready and structured correctly. This guide will take you through the necessary steps to publish your package successfully.
Step 1: Create a GitHub Repository
Start by creating a repository for your project on GitHub. This will help you manage your project's version control and collaborate with others.
Step 2: Login to npm
Before you can publish your package, you need to log in to npm. Open your terminal and run the following command:
npm login
Follow the prompts to enter your npm credentials. If you don't have an npm account, you'll need to create one at npmjs.com/signup.
Step 3: Publish Your Package
Once you're logged in, navigate to your project's root directory in the terminal. Make sure your project's package.json file is set up correctly, then run:
npm publish
This command will upload your package to npm, making it available for others to install via npm install your-package-name.
Remember to update your package's version in package.json according to semantic versioning rules before publishing a new version. This ensures that your package's users can manage updates smoothly.