
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
async-poll
Advanced tools
Advanced polling module with timeout and metrics collection
Writing your own polling function can be difficult and hard to collect metrics about the polling.
asyncPoll
aims to solve those with modern JavaScript and advanced API. By leveragingasync...await
, asynchronous polling function has never been easier and Performance Timing/ Timeline API is used to collect metrics about each polling in terms of the duration.🛠 Please check if
Performance Timing/ Timeline API
is supported on your browser or Node.js environment.
# Install via NPM
$ npm install --save async-poll
interface NewsData {
data: {
news: object[];
status: number;
};
}
import asyncPoll from 'async-poll';
/** Fetch news from a mock URL */
const fn = async () => fetch('https://example.com/api/news').then(r => r.json());
/** Keep polling until the more than 100 `news` are received or `status` returns `complete` */
const conditionFn = (d: NewsData) => d.data.news.length > 100 || d.data.status === 'complete';
/** Poll every 2 seconds */
const interval = 2e3;
/** Timeout after 30 seconds and returns end result */
const timeout = 30e3;
asyncPoll<NewsData>(fn, conditionFn, { interval, timeout })
.then(console.log)
.catch(console.error);
const { asyncPoll } = require('async-poll');
/** Fetch news from a mock URL */
const fn = async () => fetch('https://example.com/api/news').then(r => r.json());
/** Keep polling until the more than 100 `news` are received or `status` returns `complete` */
const conditionFn = d => d.data.news.length > 100 || d.data.status === 'complete';
/** Poll every 2 seconds */
const interval = 2e3;
/** Timeout after 30 seconds and returns end result */
const timeout = 30e3;
asyncPoll(fn, conditionFn, { interval, timeout })
.then(console.log)
.catch(console.error);
<script type="module">
import { asyncPoll } from 'https://unpkg.com/async-poll@latest/dist/browser.js';
/** Fetch news from a mock URL */
const fn = async () => fetch('https://example.com/api/news').then(r => r.json());
/** Keep polling until the more than 100 `news` are received or `status` returns `complete` */
const conditionFn = d => d.data.news.length > 100 || d.data.status === 'complete';
/** Poll every 2 seconds */
const interval = 2e3;
/** Timeout after 30 seconds and returns end result */
const timeout = 30e3;
asyncPoll(fn, conditionFn, { interval, timeout })
.then(console.log)
.catch(console.error);
</script>
<script src="https://unpkg.com/async-poll@latest/dist/browser.iife.js"></script>
<script>
const { asyncPoll } = window.AsyncPoll;
/** Fetch news from a mock URL */
const fn = async () => fetch('https://example.com/api/news').then(r => r.json());
/** Keep polling until the more than 100 `news` are received or `status` returns `complete` */
const conditionFn = d => d.data.news.length > 100 || d.data.status === 'complete';
/** Poll every 2 seconds */
const interval = 2e3;
/** Timeout after 30 seconds and returns end result */
const timeout = 30e3;
asyncPoll(fn, conditionFn, { interval, timeout })
.then(console.log)
.catch(console.error);
</script>
PerformanceObserver
Performance timing data can be obtained via the experimental Performance Tming API that has been added as of Node.js 8.5.0 or Performance Timeline API on browsers.
/** For Node.js **only**, no import is required on browser. */
import { PerformanceObserver } from 'perf_hooks';
async function main() {
let measurements: Record<string, unknown> = {};
const perfObs = new PerformanceObserver((list) => {
for (const n of list.getEntries()) {
measurements[n.name] = n.duration;
}
});
perfObs.observe({ entryTypes: ['measure'] });
const d = await asyncPoll(fn, conditionFn, { interval, timeout });
perObs.disconnect();
return {
data: d,
measurements,
};
}
interface AsyncPollOptions {
interval: number;
timeout: number;
}
fn
<Function> Function to execute for each polling happens.conditionFn
<Function> Function to check the condition before a subsequent polling takes place. The function should return a boolean. If true
, the polling stops and returns with a value in the type of T
.options
<AsyncPollOptions> Polling options.
T
>> Promise which resolves with a value in the type of T
.MIT License © Rong Sen Ng (motss)
FAQs
Advanced polling module with timeout and metrics collection
We found that async-poll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.