Skip to content

l1kw1d/hook.io

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Known Vulnerabilities

Open-Source Microservice Hosting Platform

Build and deploy HTTP microservices in seconds

Supported Service Programming Languages

  • JavaScript
  • ES7
  • CoffeeScript
  • Bash
  • Lua
  • Perl
  • PHP
  • Python2
  • Python3
  • Ruby
  • Scheme
  • SmallTalk
  • TCL

To start using hook.io visit the website at https://hook.io. Here you will find many examples and documentation on how to use hook.io

Architectural details can be found a bit further down.

Interested, but too busy to read this now?

If you'd like, you can run the following Curl command to opt-in to our mailing list. We'll periodically send you updates about the project.

curl hook.io?signup=youremail@marak.com

Replace youremail@marak.com with your email address.

Installing Local Instance

Before setting up a local hook.io server, you should try the free hosted version at https://hook.io

Running a local development instance of hook.io is simple.

First, you'll need to install Docker.

Docker???

It's important to note that hook.io is only using docker for helping developers get setup with a local development instance. We are not using docker in production and do not recommend using our Docker image and default configurations in production ( as there will be almost no service isolation ).

Installing hook.io

Once docker-machine is installed and running, perform the following commands:

git clone https://github.com/bigcompany/hook.io
cd hook.io
docker-compose build
docker-compose up

This should start the following services:

  • 1 hook.io front-end load balancer
  • 1 hook.io worker
  • 1 couchdb server
  • 1 redis server

Note: The cron and hpm services are not currently included in our docker image. If you require using these services locally they should be easy to add.

To access these services you'll need to open the current ip address of your docker-machine in the browser.

To find the current address of the Docker machine run: docker-machine ip

Configure the local running hook.io instance

Once the services are started, you'll still need to run one more command.

curl http://{{your_docker_machine_ip}}/_admin?baseUrl=set

Without running this last line, most http redirects and ajax gateways in the system will not work.

What is the purpose of hook.io?

hook.io is an open-source hosting platform for webhooks and microservices. The microservice architectural style is an approach to developing a single application as a suite of small services, each running in its own process and communicating with lightweight mechanisms. hook.io provides an easy way to create, host, and share microservices. Through developing many small re-usable microservices, you can reduce the complexity of your applications while improving stability.

Why or how would I want to use hook.io?

You should want to use hook.io if it can make your life as a developer easier.

The most basic use-case for hook.io is quick and free webhook hosting. You can instantly create a simple hook which parses the incoming parameters of an HTTP request and performs arbitrary actions on it. For instance: Send an SMS message every-time the Hook is requested as a webpage. Since NPM is supported, you can re-use any existing library from the extensive NPM module repository. You can also configure Hooks to be executed on a schedule using a Cron pattern.

At this point, we will take note that Hooks are fully streaming. Inside your Hook source code you have direct access to Node's http.IncomingMessage and httpServer.ServerResponse request and response streams. This means you can treat the inside of a Hook the exact same way as if it were inside a streaming middleware in a regular node http server. Having direct access to these streams is extremely useful and I am unsure if any other microservice hosting providers currently offer this feature.

More advanced use-cases for hook.io would be replacing individual parts of your application with microservices. Instead of adding a new route or module to your application , you could instead create a Hook responsible for only one unit of functionality and call it using a regular HTTP request from inside your existing application. One specific example could be building a Hook with a custom theme which acts perfectly as a stand-alone sign-up form. This sign-up form can then be loaded server-side in your application using one HTTP get request. It might sound complicated at first, but integrating microservices with your existing application is actually very easy. In the upcoming weeks we'll work on releasing specific guides for separating application functionalities into microservices.

An even more advanced usage would be building a suite of Hooks and composing them to create new and unique applications! Since every Hook understands Standard In and Standard Out and Hooks can easily call other Hooks from inside each other, there are an endless amount of combinations to be made. This composability enables the foundation for Flow-based Programming without imposing any specific rules for composition. A specific example could be building a Hook ( called "tar" ) responsible for taking in STDIN and streaming out a compressed tar file. Once this Hook is created, you could easily pipe the results of another Hook ( such as an image downloader ) into the "tar" Hook. These Hooks don't exist yet, but I am certain someone will build them in the near future.

Unix Pipes!

hook.io is very friendly with Unix Pipes. Using STDOUT and STDIN you can connect hook.io to your existing Unix Tool chain. The best way to explain this concept is to review the Curl examples.

Here is one specific example of using hook.io to flip a cat upside-down with cat and curl. You will need to provide your own cat.png

cat cat.png | curl -F 'degrees=180' -F 'image=@-;type=image/png' https://hook.io/Marak/image/rotate > upsidedown-cat.png

The Data!

If you noticed in the last example, hook.io is fully capable of streaming binary data. It also supports streaming file uploads, multipart form uploads, and will assist in parsing all incoming form fields, JSON, and query string data.

Software Architecture

The core software architecture of hook.io is Resource-View-Presenter ( RVP ).

Resources are created using the npm resource module.

View-Presenters are created using the npm view module with regular HTML, CSS, and JavaScript. The same View-Presenter pattern is also used to implement custom theming for Hooks see: hook.io/themes

Dependency Tree

hook.io itself is not a very large application. The majority of what powers hook.io is already MIT open-sourced and available for immediate download.

Learning about the following dependencies is a great way to start understanding how hook.io works.

mschema - Provides validation through-out the entire stack.

big - Small application framework. Provides website app which hook.io extends.

resource-http - Provides core HTTP server API. Helps in configuring Express with middlewares like Passport

resource-mesh - Provides a distributed event emitter mesh using a star network topography. hook.io primarily uses this module as a monitoring agent to report status back to our monitoring sink.

resource-user - Provides basic user API ( signups / logins / encrypted passwords / password resets / etc )

Server Architecture

There is one front-facing HTTP server and any number of Hook Workers.

The front-facing server is responsible for serving static content, maintaining user session data, and piping requests between the client and Worker.

Workers are responsible for executing user-submitted source code and piping their responses through the front-facing server to the client.

At this point, we will take note that communication between the Hook and client remains streaming throughout the entire architecture. This gives hook.io the ability to perform complex tasks like transcoding large video streams without worrying about clogging up any parts of the system with large memory buffers.

Hook Servers and Hook Workers are immutable and stateless to ensure stability of the platform. They are designed to fail fast and restart fast. mon is used as a process supervisor.

This architecture can theoretically scale to upwards of 10,000 concurrent connections. Realistically, it will probably be closer to 4,000. When the site needs to scale past this, we will create several front-facing servers and load balance incoming HTTP requests to them using DNS.

Hook and User configuration data are stored in a CouchDB database. If the database grows too large, we will split it into several smaller database severs sharded by the first alphabetic letter of every document's primary key.

Source code for Hooks is currently stored on Github as Github Gists. I'd imagine sometime in the future we will add the option to store and edit source code directly on hook.io itself. The project is open-source, so you could be the first to open up the issue!

Creating new Hooks

It's very simple. Go to https://hook.io/new

Support

If you run into an issue, have a question, or have feedback with using hook.io you can open up a Github Issue by clicking here

Adding new NPM Modules to hook.io

NPM modules will automatically install if you attempt to require them in a Hook. The first time the Hook is run, hook.io will install the dependency. Re-run the hook a few moments later and it should just work.

If your module requires additional dependencies outside of what NPM can install, you can create a custom build script in this folder. The hosting environment for hook.io is Ubuntu 14.04.1 LTS (Trusty Tahr) Bash scripts are recommended.

Testing your Hook

If you only need to test your Hook code, you can run ./bin/test-hook without having to setup the full hook.io stack.

Workers

Hooks are executed on stateless isolated workers to help facilitate scaling and to ensure stability in the core application. These workers are responsible for running user-submitted Hook source code and piping their responses back to the main server. If running untrusted user-submitted code, you will need to isolate these workers.

see: ./bin/worker and ./bin/test-worker

i18n Internationalization

https://github.com/bigcompany/hook.io-i18n

Tests

Integration tests for hook.io are available at https://github.com/bigcompany/hook.io-test

Contributing

Contributions are welcomed and much appreciated. Simply open up a Github Pull Request to start the discussion.

All contributors must sign our Contributor License Agreement.

This is a simple document to help protect both the hook.io project and your rights as a contributor.

Licensing

hook.io is licensed under the Affero General Public License (AGPL) open-source software license.

This license favors the developer ( you ) and ensures that all corporate contributions are made available to the public.

If this license is not suitable for your use-case please email support@marak.com. Individual licenses are available upon request.

About

Open-Source Microservice Hosting Platform

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 71.8%
  • HTML 23.3%
  • CSS 3.9%
  • Shell 0.6%
  • PHP 0.2%
  • Python 0.1%
  • Other 0.1%