https://github.com/ultcombo/node-package-template
A simple template for creating modern Node.js packages.
https://github.com/ultcombo/node-package-template
Last synced: 6 months ago
JSON representation
A simple template for creating modern Node.js packages.
- Host: GitHub
- URL: https://github.com/ultcombo/node-package-template
- Owner: UltCombo
- License: mit
- Created: 2019-08-12T05:24:20.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T06:56:22.000Z (over 3 years ago)
- Last Synced: 2024-10-18T13:56:03.696Z (over 1 year ago)
- Language: JavaScript
- Size: 978 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node.js Package Template
A simple template for creating modern Node.js packages.
## Set up
- Download latest source, unzip it to your new Node.js package's root.
- Fill in `package.json` fields, such as name, description, author, repository url and license.
- `git init && git commit --allow-empty -m 'chore: Init repository'`
- `yarn install`
## What's included
- Lint with ESLint.
- Format with Prettier, running as an ESLint plugin.
- Test and report coverage with Jest.
- Precommit hook to lint, format, test and check coverage.
- Lint commit messages.