Bootstrap a new npm package in less than a minute.
- Node.js's npm package structure.
- Travis CI ready.
- Keep a CHANGELOG.
- Consistent coding with EditorConfig.
- Badges from Shields.io.
-
Clone the master branch of this repository with
$ git clone --single-branch https://github.com/makenew/npm-package.git new-npm-package $ cd new-npm-package
Optionally, reset to the latest release with
$ git reset --hard npm-package-v1.0.1
-
Run
$ ./makenew.sh
and follow the prompts. This will replace the boilerplate, delete itself, and stage changes for commit. This script assumes the project repository will be hosted on GitHub. For an alternative location, you must update the URLs manually.
-
Fill in the README Description section.
-
If choosing a license other than the one provided: update
LICENSE.txt
, the README License section, andpackage.json
with your chosen license. -
If
index.js
will not be the main file for this package, replace or remove it and update themain
andfiles
fields inpackage.json
.
If you want to pull in future updates from this skeleton, you can fetch and merge in changes from this repository.
If this repository is already set as origin
,
rename it to upstream
with
$ git remote rename origin upstream
and then configure your origin
branch as normal.
Otherwise, add this as a new remote with
$ git remote add upstream https://github.com/makenew/npm-package.git
You can then fetch and merge changes with
$ git fetch upstream
$ git merge upstream/master
Note that CHANGELOG.md
is just a template for this skeleton.
The actual changes for this project are documented in the commit history
and summarized under Releases.
The recommended method is to add this as a dependency to your project using npm with
$ npm install --save makenew-npm-package
Alternatively, you can download a release or clone the repository directly.
The makenew-npm-package source is hosted on GitHub. Clone the project with
$ git clone https://github.com/makenew/npm-package.git
You will need Node.js with npm.
Install the development dependencies with
$ npm install
Please submit and comment on bug reports and feature requests.
To submit a patch:
- Fork it (https://github.com/makenew/npm-package/fork).
- Create your feature branch (
git checkout -b my-new-feature
). - Make changes.
- Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create a new Pull Request.
This software can be used freely, see The Unlicense. The copyright text appearing below and elsewhere in this repository is for demonstration purposes only and does not apply to this software.
This npm package is licensed under the MIT license.
This software is provided "as is" and without any express or implied warranties, including, without limitation, the implied warranties of merchantibility and fitness for a particular purpose.