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

octopie

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

octopie

An easy way to add GitHub hooks to your project

  • 1.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-66.67%
Maintainers
3
Weekly downloads
 
Created
Source

What is this?

Octopie is allows you to automate your GitHub workflow by binding into GitHub hooks

How do I use this?

First off, require Octopie into your project and boot up an instance:

var Octopie = require('octopie')
var myServer = new Octopie({
  url: 'https://path.to/my/server'
  authToken: '...'
})

Next, define repositiories you'd like to watch:

myServer.add('8bitDesigner/cool-new-repo')
        .add('8bitDesigner/another-repo')

Define events you want to receive, and your callbacks to them:

myServer.on('pull_request', function(event) {
  console.log('New pull request + event.action + ': ' +event.pull_request.title)
  // Logs out "New pull request opened: Name of Pull Request"
})

And lastly, start listening for new events:

myServer.listen(80, function() {
  console.log('listening on port 80')
})

Documentation on which GitHub events are available and what they're fired in response to can be found here: http://developer.github.com/v3/repos/hooks/

Ocotpie options

The Octopie constructor takes an object whose arguments are outline below, eg: new Octopie({ url: '...', token: '...' })

url

This should be the URL of the Octopie server. The server needs to be publically accessible, as GitHub will need to reach it with its event requests.

authToken

This should be a GitHub auth token which will be used to log into GitHub and register hook events. Keep this secret, safe, and out of source control, as auth tokens are effectively passwords.

You can generate an auth token for the current GitHub user here: https://github.com/settings/tokens/new

shouldSyncHooks

Boolean (defaults to false) - should OctoPie attempt to install any configured hooks on the its tracked repositories? Off by default as this requires its access token to have admin privileges on the repos it tracks.

Octopie methods

Each instance of the Octopie server has the following methods:

Octopie#add('user/repo')

Adds a repo to the list of repositiories to watch.

server = new Octopie({ })
server.add('my/repository')
Octopie#on('event', callback)

Registers an callback to be run every time GitHub pings our server with the requested event. The callback will be run with one argument, a the JSON payload from GitHub.

server = new Octopie({ })
server.on('push', function(data) {
  console.log('Commits pushed!', data.commits)
})
Octopie#listen(80)

Starts listening for events on the given port. If shouldSyncHooks is true, it causes the server to register all requested hooks with GitHub before listening for any events.

server = new Octopie({ })
server.listen(80)

FAQs

Package last updated on 12 Aug 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