https://github.com/jayrbolton/node-init-project
Simple script to start a new npm module
https://github.com/jayrbolton/node-init-project
Last synced: 2 months ago
JSON representation
Simple script to start a new npm module
- Host: GitHub
- URL: https://github.com/jayrbolton/node-init-project
- Owner: jayrbolton
- Created: 2017-12-18T21:55:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T21:53:03.000Z (over 7 years ago)
- Last Synced: 2025-01-04T23:41:28.654Z (4 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple npm initialization script
```
chmod +x ./node-init-project.sh
./node-init-project.sh my-new-project "This is the description"
```This is a simple script I use to initialize a new npm module.
* Initialize git repo and npm package with version 0.0.1 and MIT license
* Dev install dependency-check, standard, and tape
* Create all boilerplate files
* Git tag 0.0.1 and make an initial commitSet these npm configuration variables:
```sh
npm config set init.author.github_name your-github-user-name-here
npm config set init.author.name your-name-here
npm config get init.author.email your-email-here
```