
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
Consume Microsoft Bing Pulse API
With npm do:
npm install bing-pulse
var pulse = require('bing-pulse').create();
pulse.init({
pulseApiKey: '',
customerApiKey: ''
});
pulse.on('questions', function questions(data) {});
pulse.on('pulses', function pulses(data) {});
pulse.on('annotations', function annotations(data) {});
pulse.on('error', function error(err) {});
Require and create new pulse.
var pulse = require('bing-pulse').create();
Initialize pulse by passing your bing pulse and customer API keys.
var opts = {
pulseApiKey: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
customerApiKey: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' //optional
};
pulse.init(opts);
Available options:
opts.pulseApiKey your bing pulse API keyopts.customerApiKey your bing customer API key (optional)opts.interval how often to check the pulse in seconds (optional)opts.inactive set to neutral to default graph point to 0 or previous to default graph point to previous one if users inactive (optional)By default bing pulse API returns only graph points if users actually voted. Assuming you're plotting in 5s intervals you'd expect to get 6 graph points in 30s. If no users voted you'll get 0 graph points. Use opts.inactive to plot the points or omit to get the default bing pulse API behaviour.
Get an array of available API endpoints you can listen on.
pulse.endpoints(function endpoints(data) {});
List of available events.
Listen on questions.
pulse.on('questions', function questions(data) {});
Listen on pulses.
pulse.on('pulses', function pulses(data) {});
Listen on pulse annotations.
pulse.on('annotations', function annotations(data) {});
Listen on request stats.
pulse.on('stats', function stats(data) {});
Listen on errors.
pulse.on('error', function error(err) {});
Listen on available bing pulse API endpoints.
pulse.on('endpoints:meta', function meta(data) {});
pulse.on('endpoints:pulses', function pulses(data) {});
pulse.on('endpoints:questions', function questions(data) {});
pulse.on('endpoints:customer', function customer(data) {});
MIT
FAQs
consume microsoft bing pulse api
We found that bing-pulse 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.