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

https://github.com/coderofsalvation/parse-server-scheduler

get scheduled jobs to run automatically (without external server) in parse
https://github.com/coderofsalvation/parse-server-scheduler

Last synced: about 1 year ago
JSON representation

get scheduled jobs to run automatically (without external server) in parse

Awesome Lists containing this project

README

          

Rolled your own parse-server, and realized scheduled jobs don't work out of the box?

## Usage

run `npm install parse-server-scheduler` in your `cloud/index.js` or `app.js` simply include:

```
require('parse-server-scheduler')(Parse)
```

> Voila! Profit!

## Why

![](https://raw.githubusercontent.com/coderofsalvation/parse-server-scheduler/master/scheduler.jpg)

Parse exposes scheduled jobs as HTTP endpoints, which is great and a disappointment at the same time :)


This empowers your server with an internal scheduler using the `cron` and `moment` npm-packages.