Socket
Socket
Sign inDemoInstall

hubot-cronjob

Package Overview
Dependencies
2
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hubot-cronjob

Hubot scriptable cron job


Version published
Weekly downloads
60
decreased by-68.42%
Maintainers
1
Install size
6.95 MB
Created
Weekly downloads
 

Readme

Source

hubot-cronjob

Hubot scriptable cron job.

It's just like miyagawa/hubot-cron, but controlled via source code instead of user-facing commands. If you wish to allow your users create cron jobs themselves, use that package.

## Usage

An example that fetches restaurant menu every workday at 11am

HubotCron = require 'hubot-cronjob'
fetchRestaurantMenu = require 'my-restaurant-api'

module.exports = (robot) ->
  # monday to friday, 11am
  pattern = '0 11 * * 1-5'
  timezone = 'Europe/Prague'
  fn = fetchRestaurantMenu.bind null, (err, menu) ->
    if err
      return console.error err
    robot.messageRoom 'lunchroom', menu
  new HubotCron pattern, timezone, fn

How to install

npm install --save hubot-cronjob

Keywords

FAQs

Last updated on 30 Oct 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc