
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
changed-http
Advanced tools
Polls HTTP resources and fires events when they change.
npm install robinjmurphy/changed
var changed = require('changed-http');
var resource = new changed.Resource('http://www.example.com');
resource.on('changed', function (current, previous) {
console.log('Resource changed. Response body was ' + previous + ' , is now ' + current + '.');
});
resource.startPolling(5000);
new changed.Resource(url, options)url - stringoptions - object - configuration optionsThe options object supports all of the standard options from http.request and https.request. In addition, it supports the following properties:
compare - function - overrides the default response body comparison. Receives the current response body as its first argument and the previous response body as its second argument. Should return true if the responses differ..startPolling(interval)Start polling the resource for changes.
interval - number - the interval time in milliseconds (default 10000).stopPolling()Stop polling the resource.
changedFired when the resource's body changes.
resource.on('changed', function (current, previous) {
// `current` is a string containing the curent response body
// `previous` is a string containing previous response body
});
errorFired when an error occurs.
resource.on('error', function (error) {
// `error` is an Error object
});
responseFired each time a response is received whilst polling.
resource.on('response', function (body, res) {
// `body` is a string containig the response body
// `res` is the http/https response object
});
All polling requests are logged using console.info by default. To use a custom logger, like Winston, just set the changed.logger property:
var changed = require('changed-http');
var winston = require('winston');
changed.logger = winston;
In the following example the changed event is only fired when the foo property in a JSON response changes.
var changed = require('changed-http');
var resource = new changed.Resource('http://www.example.com/some/json/file.json', {
compare: function (current, previous) {
var currentJson = JSON.parse(current);
var previousJson = JSON.parse(previous);
return (currentJson.foo !== previousJson.foo);
}
});
resource.startPolling(5000);
FAQs
Polls HTTP resources and fires events when they change
We found that changed-http 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.