libmaxminddb
Version:
Node.js bindings for libmaxminddb (to read MaxMind DB with the best performance - using memory-mapped file!)
18 lines (15 loc) • 408 B
JavaScript
const {installUrl} = require('./vars-runtime');
function logInstallError(err) {
console.error(
[
'',
'Something went wrong installing the "libmaxminddb" module',
'',
err.message,
'',
`Consult the installation documentation: ${installUrl}`,
'',
].join('\n')
);
}
module.exports = {logInstallError};