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.

  • 1.2.0
  • 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.

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('custom-babel', {
  dependencies: ["@babel/runtime"],
  devDependencies: [
    "@babel/core",
    "@babel/plugin-transform-runtime",A
  ],
  // 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",
    },
  },
  files: [
    'src/index.js',
    {
      path: 'src/hello.js',
      contents: 'alert("hi")'
    }
  ]
})

// now you can create folders & files with `fs.mkdirSync` & `fs.writeFileSync`, etc.

FAQs

Package last updated on 10 Jul 2020

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