Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Set an alarm that will call the given function at the specified time.
Install with npm:
$ npm install --save alarm
Install with yarn:
$ yarn add alarm
var alarm = require('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!');
});
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();
}
});
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.
(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 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
Brian Woodward
Copyright © 2017, Brian Woodward. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on May 10, 2017.
FAQs
Set an alarm that will call the given function at the specified time.
We found that alarm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.