Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adisreyaj/notifications-gateway
A Simple and Efficient gateway for sending all kinds of notifications ranging from Email, SMS and Push Notifications
https://github.com/adisreyaj/notifications-gateway
Last synced: 22 days ago
JSON representation
A Simple and Efficient gateway for sending all kinds of notifications ranging from Email, SMS and Push Notifications
- Host: GitHub
- URL: https://github.com/adisreyaj/notifications-gateway
- Owner: adisreyaj
- Created: 2019-04-09T16:21:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T19:23:31.000Z (about 2 years ago)
- Last Synced: 2024-10-31T10:44:00.448Z (2 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.21 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node Notificaitons Gateway
## How to get started
1. Install the packages
```bash
npm install
```2. Run the server
```bash
npm run start
```3. Done. Check the status of the server
```
http://localhost:3000/api/v1/health
```You will be able to see this response:
```json
{
"status": "up"
}
```This means you are good to go.
### Running Test
The project use **Jest** as the test runner and also uses **chai** and **supertest**
```bash
npm run test
```**Enjoy**