
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
request-consul
Advanced tools
Request plugin to get consul service with random if many occurence of specific service
Request consul is used to request internal microservice through Consul.
If many occurences of called service exist, a randomly choice is made.
'use strict';
var Consul = require('consul-node'),
request = require('./index');
request({
uri : 'http://servicename/function',
}, function (err, res, body) {
console.log(body);
});
| params | description | default |
|---|---|---|
| consul | Consul Instance from package consul-node or object params for cConsul constructor | - |
| uri | Request URL, the hostname must be your service name in Consul.io | - |
'use strict';
var Consul = require('consul-node'),
request = require('./index');
request({
uri : 'http://servicename/function',
consul : {
hostname : '172.17.0.1',
port : 8888,
secure : true,
strict : true
}
}, function (err, res, body) {
console.log(body);
});
'use strict';
var Consul = require('consul-node'),
request = require('./index');
var consul = new Consul();
request({
uri : 'http://servicename/function',
consul : consul
}, function (err, res, body) {
console.log(body);
});
FAQs
Request plugin to get consul service with random if many occurence of specific service
We found that request-consul 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.