@zeit/ncc

[![Build Status](https://circleci.com/gh/zeit/ncc.svg?&style=shield)](https://circleci.com/gh/zeit/workflows/ncc) [![codecov](https://codecov.io/gh/zeit/ncc/branch/master/graph/badge.svg)](https://codecov.io/gh/zeit/ncc)

@zeit/ncc is no longer maintained. Please use @vercel/ncc instead.
Last updated 6 years ago by rauchg .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install @zeit/ncc 
SYNC missed versions from official npm registry.

ncc

CI Status codecov

Simple CLI for compiling a Node.js module into a single file, together with all its dependencies, gcc-style.

Motivation

  • Publish minimal packages to npm
  • Only ship relevant app code to serverless environments
  • Don't waste time configuring bundlers
  • Generally faster bootup time and less I/O overhead
  • Compiled language-like experience (e.g.: go)

Design goals

  • Zero configuration
  • TypeScript built-in
  • Only supports Node.js programs as input / output
  • Support all Node.js patterns and npm modules

Usage

Installation

npm i -g @zeit/ncc

Usage

$ ncc <cmd> <opts>

Eg:

$ ncc build input.js -o dist

Outputs the Node.js compact build of input.js into dist/index.js.

Note: If the input file is using a .cjs extension, then so will the corresponding output file. This is useful for packages that want to use .js files as modules in native Node.js using a "type": "module" in the package.json file.

Commands:

  build <input-file> [opts]
  run <input-file> [opts]
  cache clean|dir|size
  help
  version

Options:

  -o, --out [file]         Output directory for build (defaults to dist)
  -m, --minify             Minify output
  -C, --no-cache           Skip build cache population
  -s, --source-map         Generate source map
  --no-source-map-register Skip source-map-register source map support
  -e, --external [mod]     Skip bundling 'mod'. Can be used many times
  -q, --quiet              Disable build summaries / non-error outputs
  -w, --watch              Start a watched build
  --v8-cache               Emit a build using the v8 compile cache
  --stats-out [file]       Emit webpack stats as json to the specified output file

Execution Testing

For testing and debugging, a file can be built into a temporary directory and executed with full source maps support with the command:

$ ncc run input.js

With TypeScript

The only requirement is to point ncc to .ts or .tsx files. A tsconfig.json file is necessary. Most likely you want to indicate es2015 support:

{
  "compilerOptions": {
    "target": "es2015",
    "moduleResolution": "node"
  }
}

Package Support

Some packages may need some extra options for ncc support in order to better work with the static analysis.

See package-support.md for some common packages and their usage with ncc.

Programmatically From Node.js

require('@zeit/ncc')('/path/to/input', {
  // provide a custom cache path or disable caching
  cache: "./custom/cache/path" | false,
  // externals to leave as requires of the build
  externals: ["externalpackage"],
  // directory outside of which never to emit assets
  filterAssetBase: process.cwd(), // default
  minify: false, // default
  sourceMap: false, // default
  sourceMapBasePrefix: '../', // default treats sources as output-relative
  // when outputting a sourcemap, automatically include
  // source-map-support in the output file (increases output by 32kB).
  sourceMapRegister: true, // default
  watch: false, // default
  v8cache: false, // default
  quiet: false, // default
  debugLog: false // default
}).then(({ code, map, assets }) => {
  console.log(code);
  // Assets is an object of asset file names to { source, permissions, symlinks }
  // expected relative to the output code (if any)
})

When watch: true is set, the build object is not a promise, but has the following signature:

{
  // handler re-run on each build completion
  // watch errors are reported on "err"
  handler (({ err, code, map, assets }) => { ... })
  // handler re-run on each rebuild start
  rebuild (() => {})
  // close the watcher
  void close ();
}

Caveats

  • Files / assets are relocated based on a static evaluator. Dynamic non-statically analyzable asset loads may not work out correctly

Current Tags

  • 0.19.0-beta.1                                ...           beta (5 years ago)
  • 0.1.14                                ...           canary (6 years ago)
  • 0.22.3                                ...           latest (4 years ago)

77 Versions

  • 0.22.3 [deprecated]           ...           4 years ago
  • 0.22.2 [deprecated]           ...           4 years ago
  • 0.22.1 [deprecated]           ...           5 years ago
  • 0.22.0 [deprecated]           ...           5 years ago
  • 0.21.1 [deprecated]           ...           5 years ago
  • 0.21.0 [deprecated]           ...           5 years ago
  • 0.20.5 [deprecated]           ...           5 years ago
  • 0.20.4 [deprecated]           ...           5 years ago
  • 0.20.3 [deprecated]           ...           5 years ago
  • 0.20.2 [deprecated]           ...           5 years ago
  • 0.20.1 [deprecated]           ...           5 years ago
  • 0.20.0 [deprecated]           ...           5 years ago
  • 0.19.1 [deprecated]           ...           5 years ago
  • 0.19.0 [deprecated]           ...           5 years ago
  • 0.19.0-beta.1                                ...           5 years ago
  • 0.18.5 [deprecated]           ...           6 years ago
  • 0.18.4 [deprecated]           ...           6 years ago
  • 0.18.3 [deprecated]           ...           6 years ago
  • 0.18.2 [deprecated]           ...           6 years ago
  • 0.18.1 [deprecated]           ...           6 years ago
  • 0.18.0 [deprecated]           ...           6 years ago
  • 0.17.4 [deprecated]           ...           6 years ago
  • 0.17.3 [deprecated]           ...           6 years ago
  • 0.17.2 [deprecated]           ...           6 years ago
  • 0.17.1 [deprecated]           ...           6 years ago
  • 0.17.0 [deprecated]           ...           6 years ago
  • 0.16.1 [deprecated]           ...           6 years ago
  • 0.16.0 [deprecated]           ...           6 years ago
  • 0.15.2 [deprecated]           ...           6 years ago
  • 0.15.1 [deprecated]           ...           6 years ago
  • 0.15.0 [deprecated]           ...           6 years ago
  • 0.14.0 [deprecated]           ...           6 years ago
  • 0.13.3 [deprecated]           ...           6 years ago
  • 0.13.2 [deprecated]           ...           6 years ago
  • 0.13.1 [deprecated]           ...           6 years ago
  • 0.13.0 [deprecated]           ...           6 years ago
  • 0.12.1 [deprecated]           ...           6 years ago
  • 0.12.0 [deprecated]           ...           6 years ago
  • 0.11.0 [deprecated]           ...           6 years ago
  • 0.9.0 [deprecated]           ...           6 years ago
  • 0.8.1 [deprecated]           ...           6 years ago
  • 0.8.0 [deprecated]           ...           6 years ago
  • 0.7.0 [deprecated]           ...           6 years ago
  • 0.6.0 [deprecated]           ...           6 years ago
  • 0.5.5 [deprecated]           ...           6 years ago
  • 0.5.4 [deprecated]           ...           6 years ago
  • 0.5.3 [deprecated]           ...           6 years ago
  • 0.5.2 [deprecated]           ...           6 years ago
  • 0.5.1 [deprecated]           ...           6 years ago
  • 0.5.0 [deprecated]           ...           6 years ago
  • 0.4.1 [deprecated]           ...           6 years ago
  • 0.4.0 [deprecated]           ...           6 years ago
  • 0.3.0 [deprecated]           ...           6 years ago
  • 0.2.1 [deprecated]           ...           6 years ago
  • 0.2.0 [deprecated]           ...           6 years ago
  • 0.1.18 [deprecated]           ...           6 years ago
  • 0.1.17 [deprecated]           ...           6 years ago
  • 0.1.16 [deprecated]           ...           6 years ago
  • 0.1.15 [deprecated]           ...           6 years ago
  • 0.1.14 [deprecated]           ...           6 years ago
  • 0.1.13 [deprecated]           ...           6 years ago
  • 0.1.12 [deprecated]           ...           6 years ago
  • 0.1.11 [deprecated]           ...           6 years ago
  • 0.1.10 [deprecated]           ...           6 years ago
  • 0.1.9 [deprecated]           ...           6 years ago
  • 0.1.8 [deprecated]           ...           6 years ago
  • 0.1.7 [deprecated]           ...           6 years ago
  • 0.1.6 [deprecated]           ...           6 years ago
  • 0.1.5-webpack                                ...           6 years ago
  • 0.1.4-webpack                                ...           6 years ago
  • 0.1.3-webpack                                ...           6 years ago
  • 0.1.2-webpack                                ...           6 years ago
  • 0.1.1-webpack                                ...           6 years ago
  • 0.0.4 [deprecated]           ...           6 years ago
  • 0.0.3 [deprecated]           ...           6 years ago
  • 0.0.2 [deprecated]           ...           6 years ago
  • 0.0.1 [deprecated]           ...           6 years ago
Downloads
Total 4
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (76)
Dependents (1)

© 2010 - cnpmjs.org x YWFE | Home | YWFE