
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
The fastest way to detect country code based on the IP address using minimal amount of memory.
Using npm:
$ npm install ip-country --save
Using yarn:
$ yarn add ip-country
Standalone:
// Load the module.
const ipCountry = require('ip-country')
// Initiate the module with custom options.
ipCountry.init({
// You can specify the path to a custom MMDb file if you want
// more details about IP addresses (like, city, zipcode, population).
// Note: For most cases the default MMDb file should be enough.
// Note: You can find free Dbs here: http://dev.maxmind.com/geoip/geoip2/geolite2/
// Note: Big MMDb files will use more memory and lookups will be slower.
mmdb: 'BUILTIN_MMDB_PATH',
// Return a default country when the country can not be detected from the IP.
fallbackCountry: 'US',
// Expose full IP lookup info in the request (`res.locals.IPInfo`).
exposeInfo: false
})
// Get information about an IP.
ipCountry.lookup('72.229.28.185') // Object
ipCountry.lookup('87.242.77.197') // Object
ipCountry.lookup('foobar') // null
ipCountry.lookup() // null
// Detect country code of an IP.
ipCountry.country('72.229.28.185') // US
ipCountry.country('87.242.77.197') // RU
ipCountry.country('foobar') // US (fallback country)
ipCountry.country() // US (fallback country)
In ExpressJS:
// Load the module.
const ipCountry = require('ip-country')
// The Express app.
const app = express()
// The `ip-country` module will automatically use `res.locals.ip`
// when it is available, or the `req.ip` otherwise.
app.use((req, res, next) => {
res.locals.ip = '87.242.77.197' // Russian IP address.
next()
})
// Use the middleware to expose IP info and detected country code to the request.
app.use(ipCountry.setup({
/* accepts same options as the standalone init method */
}))
// Now, you can use exposed details.
app.get('/', (req, res) => {
// You should be able to access the country of client.
res.locals.country // RU (detected using IP from `res.locals.ip`)
// If you used `exposeInfo: true` option you should be able to access
// the entire lookup info.
res.locals.IPInfo // Is an `Object` when `exposeInfo` is `true` and `undefined` otherwise.
res.send('EOF')
})
The MIT License (MIT)
Copyright (c) 2017 Ion Suman sumanion122@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Get country code based on the IP address.
We found that ip-country 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.