GithubHelp home page GithubHelp logo

hook.io's Introduction

(UNRELEASED, WORK IN PROGRESS)

 __    __    ______     ______    __  ___         __    ______   
|  |  |  |  /  __  \   /  __  \  |  |/  /        |  |  /  __  \  
|  |__|  | |  |  |  | |  |  |  | |  '  /         |  | |  |  |  | 
|   __   | |  |  |  | |  |  |  | |    <          |  | |  |  |  | 
|  |  |  | |  `--'  | |  `--'  | |  .  \    __   |  | |  `--'  | 
|__|  |__|  \______/   \______/  |__|\__\  (__)  |__|  \______/  

the node.js web hook platform (aka yahoo crack pipes)

Current Status :

ALL HANDS ON DECK FOR SCURVYCONF

v0.1 is almost out (i swear!)

hook.io protocols : 10

hook.io webhooks listeners : 3

hook.io webhook actions: 4

##the webhook book (TWHB)

Table of Contents

  1. what is a webhook

  2. what is a webhook listener

  3. what is a webhook action

  4. what is hook.io

  5. installing hook.io

  6. putting a front-end on hook.io

  7. the hook.io api

  8. using the JSON-RPC api gateway

  9. creating custom webhook listener and action definitions

  10. creating custom hook.io protocols

##TL;DR - low attention span? go here => installing hookIO

#overview

hook.io is a open-source web hook platform built entirely in JavaScript and node.js. it is both a free open-source project and a free software as a service provided at http://hook.io

hook.io's dual model is unique in that it allows developers and businesses the choice of using hook.io as a third party web-service or downloading and installing their own copy of hook.io and doing whatever they want with it, without limitation.

everything in hook.io is standardized, modular, evented and enumerable. we love standards and leverage the CommonJS module system for extending and customizing hook.io

hook.io is heavily linked with the node.js project and NYC.js, we share a few developers.

##what is a webhook platform?

a webhook platform is an application platform for automating simple actions to take place on arbitrary web events. a webhook platform can concurrently listen for millions of poll or push events and execute actions which are bound to these events.

what is a webhook?

a webhook listens for some stuff to happen and then when that happens it does some other stuff

what is a webhook listener?

the listener of a webhook is the event that needs to get triggered in order to execute the webhook's actions. for now, we will focus on three basic types of listeners.

###timer listeners often a webhook listener will be based on a timer. the webhook will poll a resource on a set interval looking for a response. once the resource responds the webhook will execute its actions and pass along the payload received from the resource

###HTTP listeners a webhook listener can also be implemented as a unique URL. any HTTP request performed on this unique URL will trigger the webhook, passing along the incoming HTTP request's payload to the webhook's actions

###socket listeners perhaps one of the most powerful listeners, a socket listener will open up a socket with a resource and wait for that resource to push a response to the webhook. when the response is received it is passed along to the webhook's actions as they execute.

what is a webhook action?

the action of a webhook are the events that will executed once that webhook's listener is triggered.

###what type of actions can a webhook have?

this is where things get interesting. the actual actions of a webhook are completely arbitrary. most of the time a webhook's action will be performing an outgoing HTTP request, but with access to custom hook.io protocols you can perform almost any action

many actions, one webhook

a webhook may contain more then one action. there may be many actions attached to one listener. often, you will attach several actions to one webhook.

###chaining webhooks a webhook's action may also point directly to another webhook. this essentially short circuits the webhooks listener and forces execution of the webhook. this means you can link webhooks together, passing along your payload from webhook to webhook and creating a chain of complex functionality

#what is hook.io?

hook.io is an open-source webhook platform built entirely in JavaScript and node.js. it is both a free open-source project and a free software as a service provided at http://hook.io

hook.io as a software as a service

if you want to try hook.io without installing anything you can visit http://hook.io and use the web interface. you can also integrate your application with hook.io's JSON-RPC webservice located @ http://hook.io/api

hook.io as stand-alone server

if you want to run hook.io on your own hardware you can easily git clone the hook.io github repository and start your own hook.io instance. this instance is completely autonomous and doesn't communicate with any outside services unless you tell it to.

hook.io as a CommonJS module

hook.io is a valid, self contained, CommonJS module. this means you can import the hook.io module into an existing node.js application. once imported, you can seamlessly call hook.io methods through the hook.io api object which is exported as "hookIO.api"

hook.io has no front-end

hook.io is completely decoupled from any front-end. this is very powerful in that it allows developers to easily create customized front-ends or widgets in the technology stack of their choice

we provide a sample front-end which powers http://hook.io, you can clone it @ hook.io-frontend-website

we also provide a brower-side jQuery/JavaScript api for communicating with hook.io's JSON-RPC

JSONP support is coming soon.

how does hook.io store data?

hook.io can work with Mongo, Redis, Couch, MySQL, and SQLlite, but hook.io comes embedded with node-dirty so you can persist data instantly without any third-party software. this means as soon as you start hook.io you have a database.

#installing hook.io

##requirements

  1. node.js

##download

$ git clone [email protected]:Marak/hook.io.git
$ cd hook.io
$ git submodule update --init

##hook.io as a standalone server

$ node server.js

this will start a hook.io instance on port 8000 of your machine.

##hook.io as a CommonJS module

var hookIO = require('./hook.io/hookio/');
hookIO.api.pingAPI();    

#putting a front-end on hook.io

hook.io is completely decoupled from any front-end. this is very powerful in that it allows developers to easily create customized front-ends or widgets in the technology stack of their choice

##getting started

if you want to put a quick front-end on hook.io you should clone the hook.io-frontend-website

just serve the front-end site as static html on the same host where you are running hook.io.

##creating a custom front-end / hook.io widget

hook.io provide's a brower-side jQuery/JavaScript api for communicating with hook.io's JSON-RPC

you can import this one JS file into your existing front-end site and easily all hook.io's api methods.

##setting up hook.io and nginx

nginx is an ideal choice for serving a front-end for hook.io

use this nginx.conf file serve the hook.io-frontend-website and reverse proxy pass JSON-RPC requests to the running hook.io instance

#the hook.io api

the hook.io api is the primary interface for interacting with hook.io

/hookIO/api/

at it's most basic level you can interact with hook.io api through CommonJS.

hook.io can expose it's api over arbitrary gateways allowing easy integration other applications.

##what are hook.io's web hook and action definitions?

a web hook consists of an arbitrary listener and at least one arbitrary action. hook.io implements a hook dispatcher and an action dispatcher. the dispatchers validate configurations and delegate events to where they belong.

custom hook and action definitions might contain some of your business logic, but really they are meant only for routing purposes. if you need to define re-usable logic that can be spread across many definitions you will want to implement a hook.io protocol.

a hook.io "protocol" in it's simplest form is a CommonJS module. you can create a hook.io protocol that does anything. check out our current protocols and node.js

what would you build a hook.io protocol for?

really anything. if you wanted to integrate with Flickr, you would create the Flick.js hook.io protocol. now every single api method for Flickr can be called from a hook definition or an action definition.

hook.io's People

Contributors

marak avatar tim-smart avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.