@fedex/create-with

0.8.2 • Public • Published

create-with

Base code for npm-init with

  • This repo. is the base code of npm init with or npx create-with.

Usage

  1. You can create your own npm-init template with two files with;
  • template directory
  • npm-init.json
  1. Then, push to your github repository. $ git push

  2. Then, you are ready. $ npm init with myusername/my-template

If you want it without your user name, e.g., npm init with my-template, it has to be under https://github.com/npm-init. 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

Readme

Keywords

none

Package Sidebar

Install

npm i @fedex/create-with

Weekly Downloads

1

Version

0.8.2

License

none

Unpacked Size

5.64 kB

Total Files

3

Last publish

Collaborators

  • allenkim