
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
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/async-poll.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/async-poll.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
The npm package async-poll receives a total of 39 weekly downloads. As such, async-poll popularity was classified as not popular.
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 official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.