Kuba 2f2f9aadef RIFFMASTER: FRONTEND: add selecting RiffMaster song file and parseing it to a song object %!s(int64=2) %!d(string=hai) anos
..
.npmignore 2f2f9aadef RIFFMASTER: FRONTEND: add selecting RiffMaster song file and parseing it to a song object %!s(int64=2) %!d(string=hai) anos
.travis.yml 2f2f9aadef RIFFMASTER: FRONTEND: add selecting RiffMaster song file and parseing it to a song object %!s(int64=2) %!d(string=hai) anos
Makefile 2f2f9aadef RIFFMASTER: FRONTEND: add selecting RiffMaster song file and parseing it to a song object %!s(int64=2) %!d(string=hai) anos
README.md 2f2f9aadef RIFFMASTER: FRONTEND: add selecting RiffMaster song file and parseing it to a song object %!s(int64=2) %!d(string=hai) anos
index.js 2f2f9aadef RIFFMASTER: FRONTEND: add selecting RiffMaster song file and parseing it to a song object %!s(int64=2) %!d(string=hai) anos
package.json 2f2f9aadef RIFFMASTER: FRONTEND: add selecting RiffMaster song file and parseing it to a song object %!s(int64=2) %!d(string=hai) anos
test.js 2f2f9aadef RIFFMASTER: FRONTEND: add selecting RiffMaster song file and parseing it to a song object %!s(int64=2) %!d(string=hai) anos

README.md

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