I made a plugin for tailwind , let’s publish it to the Node Package Manager (NPM) registry now.
Sign up and Login in NPM
- First, you need to create an account on NPM, if you don’t have one.
- Make sure you have node and npm installed in your system. If not, make sure you install the latest version .
- Login to NPM in your terminal by using
npm login
command
Publish to Git
For public packages, you should publish the package to GitHub or other git clients. This makes sure your package users can browse through all the code files without installing the package.
Prepare Package
- Initialize
package.json
file by doingnpm init --yes
.
- Open
package.json
file and update the following: - Make sure you have the correct package name
"name": "tailwindcss-brand-colors",
- Follow semver versioning in
"version": "0.1.0",
- Select main entry point to your package in
"main": "index.js",
- Select License in
"license": "MIT",
- Select files to publish
This is enough to publish your package to NPM.
Test Locally
You can test your package locally before publishing it to NPM. Create a new folder, initialize npm and install your package to test it.
This will install your package from your local folder and you can test if everything works correctly before publishing. You can also do this before releasing new versions to test your packages.
npm publish
If everything is done you can publish the first version by doing npm publish
. If there are any errors, the Command Line Interface (cli) gives you all the information you need to fix it.
You can now see your package in your account on npmjs account. Check out the package we published now here: https://www.npmjs.com/package/tailwindcss-brand-colors
release-it
release-it is a cli tool to automate versioning and package publishing-related tasks.
It can,
- Bump version (in e.g. package.json)
- Git commit, tag, push
- Create release at GitHub or GitLab
- Generate changelog
- Publish to npm
You can use it for future release for automating your releases.
Now, start building some new package that you always wanted to see and remember, “Idle hands build nothing.”