Socket
Socket
Sign inDemoInstall

polling-emitter

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

polling-emitter


Version published
Weekly downloads
11
increased by83.33%
Maintainers
1
Weekly downloads
 
Created
Source

polling-emitter

Polls data from any source at given interval and fires events on changes.

Installation

npm logo

npm install --save polling-emitter@^4.0.1

Yarn logo

yarn add polling-emitter@^4.0.1

Try it out

Chromium logo Open a browser's JavaScript console and execute:
const scriptElement = document.createElement("script");
scriptElement.setAttribute("type","text/javascript");
scriptElement.setAttribute("src","https://unpkg.com/polling-emitter@4.0.1");
document.querySelector("head").appendChild(scriptElement);

This module is now loaded in a variable that can be accessed in any scope.

typeof PollingEmitter.default

Documentation

Polls data from any source at given interval and fires events on changes.

Kind: Exported class
Extends: EventEmitter

ParamType
optionsOptions

Example

import PollingEmitter from "polling-emitter"
const emitter = PollingEmitter()

Kind: instance property of module.exports
Read only: true
Kind: instance property of module.exports
Kind: instance property of module.exports
Kind: instance property of module.exports
Kind: instance property of module.exports
Kind: instance property of module.exports
Kind: instance method of module.exports
Emits: PollingEmitter#event:newEntry
Kind: instance method of module.exports

ParamType
entryObject

Kind: instance method of module.exports

ParamType
entryIdstring

Kind: instance method of module.exports
Kind: inner typedef of module.exports
Properties

NameTypeDefault
[pollInterval]number60000
[invalidateInitialEntries]booleanfalse
[autostart]booleantrue
[getIdFromEntry]function(entry) => entry.id
[processEntry]function
fetchEntriesfunction

License

MIT License

Copyright © 2019, Jaid <jaid.jsx@gmail.com> (github.com/jaid)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

FAQs

Package last updated on 14 Dec 2019

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