https://github.com/jhermsmeier/npm-create
Improved npm init
https://github.com/jhermsmeier/npm-create
cli npm
Last synced: 12 months ago
JSON representation
Improved npm init
- Host: GitHub
- URL: https://github.com/jhermsmeier/npm-create
- Owner: jhermsmeier
- License: mit
- Created: 2014-12-31T13:20:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-06-07T13:25:35.000Z (about 7 years ago)
- Last Synced: 2025-01-08T07:05:20.831Z (over 1 year ago)
- Topics: cli, npm
- Homepage:
- Size: 81.1 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# npm-create
[](https://npmjs.com/npm-create)
[](https://npmjs.com/npm-create)
[](https://npmjs.com/npm-create)
[](https://travis-ci.org/jhermsmeier/npm-create)
## Install via [npm](https://npmjs.com)
```sh
$ npm install npm-create
```
## Usage
```sh
# Create & enter the directory for your module
$ mkdir some-package && cd some-package
# Run it
$ npm-create
# Answer the questions
? Module name: (test)
? Repository prefix: ()
? Version: (0.0.0) 1.0.0
? Description: () Some description of your module
? Keywords: () key, words, test, useless
? License: (Use arrow keys)
> MIT
BSD-3-Clause
BSD-2-Clause
GPL-3.0
Apache-2.0
? Entry point: (lib/test)
? Tests: (echo "Error: no test specified" && exit 1)
# You're done
```