Skip to content

Instantly share code, notes, and snippets.

@piyushgarg-dev
Created May 3, 2020 19:54
Show Gist options
  • Select an option

  • Save piyushgarg-dev/63baf5e0f762c2e1fdaeccd156bd2de2 to your computer and use it in GitHub Desktop.

Select an option

Save piyushgarg-dev/63baf5e0f762c2e1fdaeccd156bd2de2 to your computer and use it in GitHub Desktop.
const express = require('express');
const cron = require('node-cron')
const app = express();
cron.schedule('* * * January,September Sunday', () => {
console.log('running on Sundays of January and September');
});
app.get('/', (req, res) => {
res.json('Welcome to my API');
})
app.listen(9000, () => console.log(`Server Started at PORT: 9000`))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment