1.0.2 • Published 3 years ago
zip-node-app v1.0.2
zip-node-app
Easily zip your node project excluding node_modules and package-lock.json.
Quick Start
Directly run the script using npx.
npx zip-node-app path-to-projectOr install the zip-node-app package globally and run the zip-node-app command:
npm install -g zip-node-app
zip-node-app path-to-projectThe zip file with name project-archived.zip will be created.
Options
Use -o or --output option to give custom name to zip file
npx zip-node-app path-to-project -o out.zipnpx zip-node-app path-to-project --output out.zipUse -f or --format option to give custom format to archived file. (default is zip).
npx zip-node-app path-to-project -f tarnpx zip-node-app path-to-project --format tarNote: only ZIP and TAR format is supported.