Socket
Book a DemoInstallSign in
Socket

@digitalscientists/poller

Package Overview
Dependencies
Maintainers
4
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@digitalscientists/poller

a fetch and poll reference implementation and maybe module

1.1.3
latest
Source
npmnpm
Version published
Maintainers
4
Created
Source

Poller - the best thing since sliced bread

This is a simple little library that implements a fetch-and-poll procedure.

Getting Started

npm install @digitalscientists/poller

Usage


const fetchAndPoll = require("@digitalscientists/poller") 

const options = {
  url: "https://a-url-that-supports-polling.com/begin",
  pollUrl: (id) => `https://a-url-that-supports-polling.com/check/${id}`, // or whatever format
  wait: 2000, // how long to wait between polling (optional, defaults to 2 seconds)
  timeout: 120000, // how long to wait between polling (optional, defaults to 120 seconds)
  payload: {
    the: "payload",
    for: "the initial POST"
  }
}

const response = await fetchAndPoll(options)


Deployment

Make sure you run the tests before deploying

npm build

npm version patch # or major|minor depending on changes

npm publish

Development

npm i

npm run debug:test

Make sure you have NiM installed in chrome for best results.

You can also run npm link if ya know what you're doing. This will let you install the local dev version in a separate app. Google that for more info.

Tests

npm test

This will run the rollup build process and test the main index.js file as well as the built lib files agaist a mock server. TODO: still need to test the UMD version, but need a browser env or something for that.

current assumptions and limitations

The library currently assumes the following:

  • the initial fetch will be a POST call
  • the initial fetch will return something that looks like {id: "somekindaideitherastringorinteger", status:"queued"}
  • subsequent polling will be GETs
  • statuses for polling are: queued, done, and errored
  • erroring jobs will not be retried
  • everything is json. if you want xml, you're fired

Keywords

cool

FAQs

Package last updated on 17 Oct 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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.