Socket
Socket
Sign inDemoInstall

timers

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    timers

A tiny cron-like tools for humman.


Version published
Weekly downloads
74K
decreased by-20.2%
Maintainers
1
Install size
5.07 kB
Created
Weekly downloads
 

Readme

Source

Schedule

A tiny cron-like tools for humman, implement by Node.js

Build Status Coverage Status


Install

$ npm install schedule

Usage

var every = require('schedule').every;
every('2s').do(function() {
  // do your job
});

You can stop interval when some exception

var every = require('schedule').every;
var ins = every('2 seconds').do(cb);

process.on('uncaughtException', function() {
  ins.stop();
})

Format

  • ms, millisecond, milliseconds
  • s, second, seconds
  • m, minite, minites
  • h, hour, hours
  • d, day, days

Lisence

MIT

FAQs

Last updated on 18 May 2014

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