Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
A small utility library to allow you to iterate through all IPs within a given subnet. Remains efficient no matter how many IPs there are in the range.
IpTerate is a small library that helps you iterate through all available IPs within a specific subnet.
For instance the following code
const ipterate = require('ipterate');
ipterate.range('10.0.1.0/29').iterate(ip => {
console.log(`IP: ${ip}`);
});
prints out
10.0.1.0
10.0.1.1
10.0.1.2
10.0.1.3
10.0.1.4
10.0.1.5
10.0.1.6
10.0.1.7
and this one will traverse all IPs in existence:
const ipterate = require('ipterate');
ipterate.range('0.0.0.0/0').iterate(ip => {
console.log(`IP: ${ip}`);
});
If you want to perform an asynchronous action, make sure that your function returns a promise and call iterateAsync
instead. iterateAsync
itself returns a promise and will wait for the resolution of the promise returned by
your delegate, before it provides you with another IP.
const ipterate = require('ipterate');
const rp = require('request-promise');
ipterate.range('0.0.0.0/0').iterateAsync(ip => {
return rp.get(ip);
});
npm install --save ipterate
FAQs
A small utility library to allow you to iterate through all IPs within a given subnet. Remains efficient no matter how many IPs there are in the range.
The npm package ipterate receives a total of 0 weekly downloads. As such, ipterate popularity was classified as not popular.
We found that ipterate demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.