
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.
maxmind-loader
Advanced tools

Get maxmind paid and lite geoip data updates
npm install maxmind-loader
var maxloader = require('maxmind-loader');
maxloader(callback);
// default values shown
maxloader({
license: undefined, // maxmind license string for paid data otherwise free version loaded
day: 'tuesday', // day of the week to load for paid subscription
edition: 132, // paid subscription edition
extract: true, // extract compressed files
dest: '/tmp/' // should load /tmp/GeoCityLite.dat, async operation
}, function (err, filepath) {
if (err) {
console.log(err);
} else {
console.log(filepath, 'loaded');
}
});
var maxmind = require('maxmind')
, maxloader = require('maxmind-loader');
maxloader(function(error, filepath) {
maxmind.init(filepath); // intialize with /tmp/GeoLiteCity.dat
});
var options = { license: 'MAXMIND_LICENSE' };
maxloader(options, function(err, filepath) {
if (err) {
console.log(err);
} else {
maxmind.init(filepath, { memoryCache: true });
}
})
Dependencies:
Development Dependencies:
FAQs
Get maxmind paid and lite geoip data updates
The npm package maxmind-loader receives a total of 5 weekly downloads. As such, maxmind-loader popularity was classified as not popular.
We found that maxmind-loader 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.