Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

base-create

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base-create

Utility for npm init create-* scripts.

  • 3.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
44
increased by131.58%
Maintainers
1
Weekly downloads
 
Created
Source

base-create

Utility for npm init create-* scripts.

Note: If you're creating an initializer for monorepos, try base-create-monorepo.

Example for a script called create-custom-babel (run with npm init custom-babel my-app), you could do:

#!/usr/bin/env node

const create = require("base-create");

// `name` will be the app name passed on CLI like "my-app"
const { name } = create({
  // optional deps to install
  dependencies: ["@babel/runtime"],
  // optional dev deps to install
  devDependencies: ["@babel/core", "@babel/plugin-transform-runtime"],
  // mostly a shallow merge into a base `package.json` from `npm init`
  package: {
    main: "dist/main.js",
    // these will merge with scripts like `test` from `npm init`
    scripts: {
      build: "babel src --out-dir dist",
      "build:watch": "npm run build -- --watch",
    },
  },
  // optional files to create
  files: [
    "src/index.js",
    {
      path: "src/hello.js",
      contents: 'alert("hi")',
    },
    {
      path: "README.md",
      // `contents` can be a function
      contents: ({ nameWithScope, nameWithoutScope, dirName }) =>
        "# ${nameWithScope}",
    },
  ],
  // optional list of shell commands to be run
  commands: [],
  // optional global config options
  config: {
    // optional package scope to for main package and any sub-packages for monorepos
    scope: "@my-org",
  },
  // optionally skip default gitignore creation
  skipGitignore: false,
  // optionally skip default readme creation
  skipReadme: false,
  // optionally specify sub-packages for monorepos - see the `base-create-monorepo` package to ease this
  packages: [
    {
      name: "my-first-subpackage",
      package: {
        scripts: {
          start: "node dist/first.js",
        },
        files: ["src/first.js"],
      },
      // ...supports most of the root-level options
    },
    {
      name: "my-second-subpackage",
      package: {
        scripts: {
          start: "node dist/second.js",
        },
        files: ["src/second.js"],
      },
      // ...supports most of the root-level options
    },
    // ...and more sub-packages if you want
  ],
});

FAQs

Package last updated on 23 Nov 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc