![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
GeoIP query tool with AS Number
GeoIP data from geoip-lite using MaxMind's GeoLite2 database
ASN data from APNIC (data-raw-table) (data-used-autnums)
Update GeoLite2 database to better results
cd node_modules/geoip-lite
npm run-script updatedb license_key=[KEY]
You can get free license key in MaxMind
npm i geoipasn
ESM
import geoip from 'geoipasn';
const data = geoip('12.34.56.78');
console.log(data);
CJS
const geoip = require('geoipasn').default;
const data = geoip('12.34.56.78');
console.log(data);
{
ip: IP { label: '12.34.56.78' },
country: { code: 'US', name: 'United States of America' },
region: 'Ohio',
city: 'Dayton',
coordinate: { latitude: 39.6438, longtitude: -84.1743, range: 5 },
timezone: 'America/New_York',
time: 2022-09-24T02:47:59.000Z,
as: { number: 7018, name: 'ATT-INTERNET4' },
service: ''
}
// Get AS number of IP
const data = geoip.asn('12.34.56.78');
console.log(data);
{ ip: IP { label: '12.34.56.78' }, number: 7018, name: 'ATT-INTERNET4' }
FAQs
GeoIP query tool with AS number
The npm package geoipasn receives a total of 8 weekly downloads. As such, geoipasn popularity was classified as not popular.
We found that geoipasn 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.