0.0.6 • Published 10 years ago

taas v0.0.6

Weekly downloads
8
License
MIT
Repository
github
Last release
10 years ago

taas Build Status

Timer as a Service (TaaS) allows you to schedule tasks for a future execution given the destination time and action.

Install

$ npm install taas

Example

Schedule a task for the next 5 minutes

var taas = require('taas');
taas.schedule(Date.now() + 5 * 1000 * 60, "http://example.com", "get", "a=6&b=7", function(error, response) {
    console.log(response.id);
    taas.cancel(response.id);
});

License

The MIT License (MIT)

Copyright (c) 2015 Roy Ganor

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago