Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grizzly

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grizzly

create release on github

  • 2.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15K
decreased by-15.31%
Maintainers
1
Weekly downloads
 
Created
Source

Grizzly License NPM version Dependency Status

Create release on github with help of node. To upload asset use putasset.

Install

npm i grizzly -g

How to use?

Global

$ grizzly
Usage: grizzly [options]
Options:
  -h, --help       display this help and exit
  -v, --version    output version information and exit
  -r, --repo       name of repository
  -u, --user       user of repository
  -t, --tagname    tag of repository (shoul exist!)
  -n, --name       name of release
  -b, --body       body of release
  -p, --prerelease set prerelease
  --no-prerelease  unset prerelease (default)
  -tn, --token     github token <https://github.com/settings/tokens/new>

$ grizzly -tn "token from url" \
-r grizzly -u coderaiser -t v1.0.0 \
-n "grizzly v1.0.0" -b "some body"

Local

npm i grizzly --save

Data will be read before execution in next order (left is more important):

command line -> ~/.grizzly.json

Example

var grizzly = require('grizzly'),
    token   = 'token from https://github.com/settings/applications';

grizzly(token, {
    user: 'coderaiser',
    repo: 'grizzly',
    tag: 'v1.0.0',
    name: 'grizzly v1.0.0',
    body: 'changelog'
    prerelease: false /* default */
}, function(error) {
    if (error)
        console.error(error.message);
});

License

MIT

Keywords

FAQs

Package last updated on 27 Jun 2016

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