Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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**