This package has been deprecated

Author message:

This solution doesn't work with sub private dependencies

heroku-private-modules

0.0.1 • Public • Published

Heroku Private Modules

Use private GitHub repos as npm dependencies on Heroku.

Heroku doesn't has access to your private git repositories so every deploy of an app with private git dependencies fails.

This changes your package.json private GitHub dependencies (before Heroku installs your dependencies) with a url of the dependency with a GitHub access token.

Installation

npm i --save heroku-private-modules

Usage

  1. Create a Github OAuth token with "repo" scope.
  2. Set on Heroku the config var GITHUB_TOKEN with the token of the previous step.
  3. On your app add the npm script heroku-prebuild with npm i heroku-private-modules && heroku-private-modules.
"heroku-prebuild""npm i heroku-private-modules && heroku-private-modules"

Background

I choose this solution to have the secrets out of the source control, keep the projects with the minimum configuration required and also because it seems to me the less risky solution.

Recommendation: create a GitHub user and only give him permissions to the required private repos, and use the token from this account. So if the token gets compromised the attacker will only access to only a part of the privates repos of your org/personal user.

Other solutions with different tradeoffs:

License

Heroku Private Modules is MIT licensed.

Dependents (0)

Package Sidebar

Install

npm i heroku-private-modules

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • ramasilveyra