Socket
Socket
Sign inDemoInstall

alarm

Package Overview
Dependencies
0
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

alarm

Set an alarm that will call the given function at the specified time.


Version published
Maintainers
2
Weekly downloads
7
increased by250%
Install size
6.41 kB

Weekly downloads

Readme

Source

alarm NPM version NPM monthly downloads NPM total downloads Linux Build Status

Set an alarm that will call the given function at the specified time.

Install

Install with npm:

$ npm install --save alarm

Install with yarn:

$ yarn add alarm

Usage

var alarm = require('alarm');

API

alarm

Set an alarm that will execute the provided function at the specified time.

Params

  • date {Date}: a Date object or a string that can be passed to the Date constructor.
  • fn {Function}: Function to execute at the specified time.
  • returns {Function}: Returns a function that can be called to cancel the alarm.

Example

// 2 seconds from now
var now = new Date();
var date = new Date(+now + 2000);
alarm(date, function() {
  console.log('Hello, world!');
});

.recurring

Set a recurring alarm that will execute the provide function even X milliseconds.

Params

  • ms {Number}: Number of milliseconds to specify how often to execute the function.
  • fn {Function}: Function to execute every X milliseconds.
  • returns {Function}: Returns a function that may be called to cancel the recurring alarm.

Example

var count = 0;
var cancel = alarm.recurring(1000, function() {
  console.log((count++) + ' BEEP BEEP BEEP!');
  if (count >= 5) {
    cancel();
  }
});

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Please read the contributing guide for advice on opening issues, pull requests, and coding standards.

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Brian Woodward

License

Copyright © 2017, Brian Woodward. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on May 10, 2017.

Keywords

FAQs

Last updated on 11 May 2017

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