Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zapier/resthooks
A lightweight subscription notification layer on top of your existing REST API
https://github.com/zapier/resthooks
deprecated
Last synced: about 1 month ago
JSON representation
A lightweight subscription notification layer on top of your existing REST API
- Host: GitHub
- URL: https://github.com/zapier/resthooks
- Owner: zapier
- Created: 2013-08-22T23:37:09.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-05-13T17:59:44.000Z (over 5 years ago)
- Last Synced: 2024-11-13T07:35:31.318Z (about 2 months ago)
- Topics: deprecated
- Language: HTML
- Homepage: http://resthooks.org
- Size: 696 KB
- Stars: 558
- Watchers: 139
- Forks: 51
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
_____ ______ _____ _______ _ _ ____ ____ _ __ _____ ____ _____ _____
| __ \ | ____| / ____||__ __|| | | | / __ \ / __ \ | |/ / / ____| / __ \ | __ \ / ____|
| |__) || |__ | (___ | | | |__| || | | || | | || ' / | (___ | | | || |__) || | __
| _ / | __| \___ \ | | | __ || | | || | | || < \___ \ | | | || _ / | | |_ |
| | \ \ | |____ ____) | | | | | | || |__| || |__| || . \ ____) |_| |__| || | \ \ | |__| |
|_| \_\|______||_____/ |_| |_| |_| \____/ \____/ |_|\_\|_____/(_)\____/ |_| \_\ \_____|
```REST Hooks are a lightweight subscription layer on top of your existing REST API.
The real-time web is already here, but REST APIs haven't kept up. Many major players have already standardized upon subscription webhooks. REST Hooks are a way to consolidate that momentum and push it to a broarder audience.
For more information, code examples, libraries, and company profiles check out [http://resthooks.org](http://resthooks.org).
[http://resthooks.org](http://resthooks.org) an initiative by [Zapier](https://zapier.com) 2013-2017.
## How to run locally.
Clone the repo and hop into the correct directory.
```
git clone [email protected]:zapier/resthooks.git && cd resthooks
```Next, you'll want to make a virtual environment (we recommend using
virtualenvwrapper but you could skip this) and then install dependencies:```
mkvirtualenv resthooks -p python2.7
pip install -r requirements.txt
```Now you can run the server!
```
foreman run web
# or
python resthooks.py
```