JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1138
  • Score
    100M100P100Q113481F
  • License Apache-2.0

Zips a node module with its declared dependencies.

Package Exports

  • repack-zip

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (repack-zip) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

This package creates a .zip file containing your package and its dependencies, including transitive dependencies.

The code was forked from node-pack-zip which did not support transitive dependencies (see issue#2).

It was mainly designed to help deploy nodejs packages in AWS lambdas.

The .zip file will contain

  • All files not in node_modules
  • All files in node_modules that are part of a package listed in the dependencies field of your package.json and all their transitives dependencies
  • Files may be excluded by adding glob patterns to .packignore

Installation

npm install --save-dev repack-zip

Example

my-lambda is an npm package I want to run as an AWS Lambda Function.

Install repack-zip locally in my-lambda

npm install --save-dev repack-zip

Install any runtime dependencies of my-lambda.

npm install

Modify my-lambda/package.json:

"scripts": {
    "build-aws-lambda": "repack-zip"
    ...
}

Create the .zip file containing my-lambda and all its dependencies, ready to be uploaded to AWS Lambda

npm run build-aws-lambda