JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q25403F
  • License ISC

Dependency manager for private npm modules on s3

Package Exports

  • deps3

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 (deps3) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

deps3

npm version Build Status JavaScript Style Guide

Publish to and install private module from an s3 bucket. Installation of the tarball is delegated to npm so make sure it is installed.

Installation

npm i -g deps3

Usage

Publish

export AWS_PROFILE='apichef'
export AWS_DEPS3_BUCKET='bla'
deps3 publish <your bundled module>.tgz

Install

export AWS_PROFILE='apichef'
export AWS_DEPS3_BUCKET='bla'
deps3 install <your-module-on-s3@latest>

Proxy

If you need to go through a proxy:

export http_proxy=http://....
deps3 <command> <tarball|package>