Socket
Socket
Sign inDemoInstall

node-pre-gyp-github

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-pre-gyp-github

A node-pre-gyp module which provides the ability to publish to GitHub releases.


Version published
Weekly downloads
832
increased by19.37%
Maintainers
1
Weekly downloads
 
Created
Source

node-pre-gyp-github

A node-pre-gyp module which provides the ability to publish to GitHub releases.

Usage

Instead of node-pre-gyp publish use node-pre-gyp-github publish

Options

  • --release : Publish the GitHub Release immediately instead of creating a Draft.

ex. node-pre-gyp-github publish --release

Install

npm install -g node-pre-gyp-github

Configuration

This module is intended to be used with node-pre-gyp. Therefore, be sure to configure and install node-pre-gyp first. After having done that, within package.json update the binary property host so it matches the following format:

https://github.com/{owner}/{repo}/releases/download/{1.0.1}

Be sure to replace {owner}, {repo}, {1.0.1} with actual values.

WARNING: Variable substitutions are not supported on the host property so you will have to manually update the version number with every change. Failure to do so will result in users installing the wrong binary versions.

Tip: Since the version number will be included within the host you can ommit it from the package name.

Within GitHub, create a new authorization:

  1. go to Settings
  2. click Personal access tokens
  3. click Generate new token
  4. Select all checkboxes (in a future update I will specify which precise checkboxes are needed, but for now...)
  5. Generate Token
  6. copy the key that's generated and set NODE_PRE_GYP_GITHUB_TOKEN environment variable to it. Within your command prompt:
SET NODE_PRE_GYP_GITHUB_TOKEN=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Example (Publish to GitHub as a Draft Release)

  1. node-pre-gyp configure
  2. node-pre-gyp build
  3. node-pre-gyp package
  4. node-pre-gyp-github publish

Example (Publish to GitHub as a Release)

  1. node-pre-gyp configure
  2. node-pre-gyp build
  3. node-pre-gyp package
  4. node-pre-gyp-github publish --release

Keywords

FAQs

Package last updated on 22 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc