create-for
v0.8.10
Published
`npm init for <repo-name>` base code
Downloads
6
Readme
create-for
Base code for npm-init for
- This repo. is the base code of
npm init for
ornpx create-for
.
Usage
- You can create your own npm-init template with two files with;
template
directory- npm-init.json
Then, push to your github repository.
$ git push
Then, you are ready.
$ npm init for myusername/my-template
If the temlate repo. is under https://github.com/npm-init,
you can run it without your user name, e.g., npm init for my-template
.
Thus, pleae create an issue for it.
Examples of npm-init.json
{
"prompts": {
"name": {
"type": "string",
"required": true,
"message": "Project Name"
},
"description": {
"type": "input",
"required": true,
"message": "Project Description"
}
},
"completeMessage": "To get started:\n cd {{name}}\n npm install\n npm start"
}
Examples of template
directory
template
directory can have any file including any directory.
If your file contents to be dynamic, please build it as a mustache template
e.g. package.json
{
"name": "{{name}}",
"description": "{{description}}",
"version": "0.0.0",
"main": "dist/{{name}}.umd.js
}
MIT Licensed