1.0.1 • Published 4 years ago

express-cron-appengine v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

express-cron-appengine

Express middleware that secure a Scheduling Jobs for App Engine

Installation

Use the package manager npm to install express-cron-appengine.

npm install express-cron-appengine

Usage

const cron = require("express-cron-appengine")

app.get('/demo', cron, function(req, res) {
    res.sendStatus(200)
}));

or

import cron from 'express-cron-appengine'

app.get('/demo', cron, function(req, res) {
    res.sendStatus(200)
}));

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT