Socket
Socket
Sign inDemoInstall

create-as

Package Overview
Dependencies
42
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    create-as

`npm init with <repo-name>` base code


Version published
Maintainers
1
Created

Readme

Source

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"
    }
  },
  "compile" : {
    "with": "mustache",
    "excludes": ["\.html$"]
  },
  "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

FAQs

Last updated on 09 Feb 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc