Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/megaads-vn/webhooks-central
Webhook Central
https://github.com/megaads-vn/webhooks-central
Last synced: 10 days ago
JSON representation
Webhook Central
- Host: GitHub
- URL: https://github.com/megaads-vn/webhooks-central
- Owner: megaads-vn
- Created: 2021-08-25T04:17:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-10T03:59:18.000Z (7 months ago)
- Last Synced: 2024-06-10T04:49:46.646Z (7 months ago)
- Language: JavaScript
- Size: 321 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About Webhooks Central
A webhook (also called a web callback or HTTP push API) is a way for an app to provide other applications with real-time information. A webhook delivers data to other applications as it happens, meaning you get data immediately. Unlike typical APIs where you would need to poll for data very frequently in order to get it real-time. This makes webhooks much more efficient for both provider and consumer. The only drawback to webhooks is the difficulty of initially setting them up.Webhooks are sometimes referred to as “Reverse APIs,” as they give you what amounts to an API spec, and you must design an API for the webhook to use. The webhook will make an HTTP request to your app (typically a POST), and you will then be charged with interpreting it.
# Using Adonis fullstack application
This is the fullstack boilerplate for AdonisJs, it comes pre-configured with.
1. Bodyparser
2. Session
3. Authentication
4. Web security middleware
5. CORS
6. Edge template engine
7. Lucid ORM
8. Migrations and seeds## Setup
Use the adonis command to install the blueprint
```bash
adonis new yardstick
```or manually clone the repo and then run `npm install`.
### Migrations
Run the following command to run startup migrations.
```js
adonis migration:run
```