npm package template.
Clone repository with Git:
git clone https://github.com/remarkablemark/npm-package-template.git
cd npm-package-templateRename package (use npm-package-name-checker to check for name availability):
# replace $NAME with your package name
git grep -l npm-package-template | xargs sed -i '' -e "s/npm-package-template/$NAME/g"Manually update the files:
- LICENSE
- README.md
- package.json
Reinitialize Git repository:
rm -rf .git
git initInstall package dependencies:
npm installMake first commit:
git commit -am "feat: initial commit"Run tests:
npm testRun tests in watch mode:
npm run test:watchRun tests with coverage:
npm run test:coverageView coverage in browser:
npm run test:coverage:report
open coverage/index.htmlLint files:
npm run lintFix lint errors:
npm run lint:fixOnly collaborators with credentials can release and publish:
npm run release
git push --follow-tags && npm publishTo see what files are going to be published, run the command:
npm pack --dry-run
# tar tvf $(npm pack)