npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@mohamed-abdelrhman/mezo

v1.0.0

Published

Locates the city/region of a given IP address

Downloads

6

Readme

Twenty

What is it?

Twenty is a small package to help you get location (city/region and lat/lon coordinates) and ISP data from an IP address or URL. Other utilities are provided, like a method that provides the approximate distance between two IP addresses. All of this can also be done by specifying the FQDN, like "stackabuse.com" or "google.com".

For location data, the ipinfo.io REST service is used.

Twenty was created in conjunction with this article.

Installation

Twenty can be installed as a project dependency or global CLI tool:

$ [sudo] npm install mezo [-g]

Usage

There are two ways to use this package: through the command line or by within your code.

Command Line

$ mezo [command] [ip | url] [-j]

Twenty takes an optional IP (or URL) address as an argument. If one isn't given, then your own IP address is used. If you're using the distance command, then you must provide at least one IP/URL, and optionally two.

The -j flag will print out all of the IP location info JSON format.

$ mezo stackabuse.com -j
{
    "ip": "54.173.122.231",
    "hostname": "ec2-54-173-122-231.compute-1.amazonaws.com",
    "city": "Ashburn",
    "region": "Virginia",
    "country": "US",
    "loc": "39.0437,-77.4875",
    "org": "AS14618 Amazon.com, Inc.",
    "postal": "20147"
}

In Your Code

Twenty can also be used programmatically. Currently, the functions provided are info() and distance().

  • info(): Provides you with all the IP info as a JavaScript object
  • distance(): Calculates the distance between two IPs/URLs in kilometers

Example Code

var mezo = require('mezo');

mezo.info('8.8.8.8', function(err, data) {
    console.log('Google\'s DNS server is located at:', data.loc);
});

mezo.distance('8.8.8.8', '54.173.122.231', function(err, distance) {
    console.log('Distance between Google\'s DNS and stackabuse.com server (km):', distance);
});

Note

Since Twenty uses the ipinfo.io REST service for getting location information, you'll need to be aware of your usage. The daily limit for free usage is 1,000 requests per day. Check the ipinfo.io About page for more information.

Why 'Twenty'?

The name 'Twenty' came from the phrase "What's your 20?", which came from the police 10-code "10-20", which means "identify your position" or "where are you?".

Copyright & License

Copyright (c) 2016 Scott Robinson

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 NONINFRINGEMENT. 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.