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

ipstackclient

v0.6.0

Published

node.js client for apis maintained at ipstack.com for identification by ip address

Downloads

1,752

Readme

ipstack

Node.js client for ipstack.com apis

https://ipstack.com/ provides a well documented set of 3 apis to get geolocation information from an ip address. This package provides a node.js client/wrapper around the apis provided by ipstack.

Installation

Installing the library with npm


npm i ipstackclient

Usage

In order to use the client there are 2 steps first an api key must be created with with an access key from ipstack. To register a key: https://ipstack.com/signup/free. Then one of the ip lookup methods can be used.

Create IpStackClient

The create method takes 2 parameters, the access token and optional ssl boolean (defaults to false). Ssl true only works with premium ipStack accounts.


const ipstack = require('ipstackclient');
const IpStackClient = ipstack.create('YOUR_ACCESS_TOKEN', true);

IP lookup functions

The IP lookup functions all return promises. The node ClientRequest object can also be passed to standardLookup instead of an ipAddress string. The algorithm for using the request object looks at the x-forwarded-for header, then the remoteAddress as a backup.


IpStackClient.standardLookup(ClientRequest, options)
  .then(standardLookup => console.log(standardLookup));
IpStackClient.standardLookup('IP_ADDRESS', options)
  .then(standardLookup => console.log(standardLookup));
IpStackClient.bulkLookup(['IP_ADDRESS', 'OTHER_IP_ADDRESS'], options)
  .then(bulkLookup => console.log(bulkLookup));
IpStackClient.requesterLookup(options)
  .then(requesterLookup => console.log(requesterLookup));

The results will be the parsed json of the corresponding endpoints documented https://ipstack.com/documentation.

Options Object

The options object has 4 optional parameters also documented at ipStack. The output parameter is always json and cannot be overwritten.


{
  fields: Array<String>,  // defaults undefined this is an array of strings
                          // unlike the csv list from the docs
  hostName: Bool,         // defaults to false
  security: Bool,         // defaults to false
  language: String,       // defaults to 'en'
}