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
- Host: GitHub
- URL: https://github.com/coderofsalvation/parse-server-scheduler
- Owner: coderofsalvation
- License: mit
- Created: 2020-06-08T09:44:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-31T01:16:40.000Z (almost 4 years ago)
- Last Synced: 2025-04-12T20:09:19.303Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 216 KB
- Stars: 12
- Watchers: 4
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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

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.