express-cron-appengine

Express middleware that secure a Scheduling Jobs for App Engine

Usage no npm install needed!

<script type="module">
  import expressCronAppengine from 'https://cdn.skypack.dev/express-cron-appengine';
</script>

README

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