Socket
Socket
Sign inDemoInstall

request-interval

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

request-interval

Like setInterval() but with requestAnimationFrame()


Version published
Maintainers
1
Created
Source

request-interval Build Status

Like setInterval() but using requestAnimationFrame().
You can also find requestTimeout component here.

Installation

With npm do:

$ npm install request-interval --save

Install with component(1):

$ component install nk-components/request-interval

API

var requestInterval = require('request-interval');

var id = requestInterval(300, function() {
  // do something
});

// [...]
// stop
requestInterval.clear(id);

If you need to support IE9, add a polyfill for requestAnimationFrame() and cancelAnimationFrame()

License

MIT

Inspired by Joe Lambert's Gist.

Keywords

FAQs

Package last updated on 09 Apr 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc