Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

34
ncc Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# ncc
> Compile a Node.js application into a single file.
> Supports TypeScript, binary addons and dynamic requires.
> More information: <https://github.com/vercel/ncc>.
- Bundle a Node.js application:
`ncc build {{path/to/file.js}}`
- Bundle and minify a Node.js application:
`ncc build --minify {{path/to/file.js}}`
- Bundle and minify a Node.js application and generate source maps:
`ncc build --source-map {{path/to/file.js}}`
- Automatically recompile on changes to source files:
`ncc build --watch {{path/to/file.js}}`
- Bundle a Node.js application into a temporary directory and run it for testing:
`ncc run {{path/to/file.js}}`
- Clean the `ncc` cache:
`ncc clean cache`