NPM Package Boilerplate
A boilerplate ready to create and publish new npm packages.
Steps
- Change this
README
to include the content of your package (template included as a comment on the README); - Change the
LICENSE
to your own license and personal information; - Remove the current package.json;
- Rename the
package.json.template
topackage.json
; - Change the
package.json
; - Put and change the code inside the package;
- Publish it with:
npm publish
or follow the official instructions here.