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

ip2d

v2.0.0-beta

Published

[![Known Vulnerabilities](https://snyk.io/test/github/0xflotus/ip2d/badge.svg?targetFile=package.json)](https://snyk.io/test/github/0xflotus/ip2d?targetFile=package.json) [![npm version](https://badge.fury.io/js/ip2d.svg)](https://badge.fury.io/js/ip2d)

Downloads

100

Readme

ip2d

Known Vulnerabilities npm version

ip2d is a lightweight JavaScript library designed to convert IP addresses (both IPv4 and IPv6) and their numeric equivalents. It offers zero-cost conversions between IP address formats, making it ideal for performance-sensitive applications.

Features

  • Convert IPv4 to Decimal
  • Convert Decimal to IPv4
  • Convert IPv6 to BigInt
  • Convert BigInt to IPv6

Installation

Install via npm:

npm install ip2d

Usage Examples

Basic IPv4 to Decimal Conversion

Convert an IPv4 address to its decimal form:

const { fromIPv4 } = require("ip2d");

console.log(fromIPv4("127.0.0.1")); // Output: 2130706433

Basic Decimal to IPv4 Conversion

Convert a decimal number back to an IPv4 address:

const { toIPv4 } = require("ip2d");

console.log(toIPv4(2130706433)); // Output: "127.0.0.1"

IPv6 to BigInt Conversion

Convert an IPv6 address string into a BigInt:

import { fromIPv6 } from "ip2d";

const bigIntValue = fromIPv6("2001:0db8:85a3:0000:0000:8a2e:0370:7334");

console.log(bigIntValue);  // Output: A BigInt representation of the IPv6 address

BigInt to IPv6 Conversion

Convert a BigInt back into an IPv6 address string:

import { toIPv6 } from "ip2d";

const ipv6Address = toIPv6(BigInt("42540766411282592856906245548098208148"));

console.log(ipv6Address);  // Output: "2001:db8:85a3::8a2e:370:7334"

Security Considerations

The repository includes a SECURITY.md file for reporting vulnerabilities. The project also integrates with Snyk for checking known vulnerabilities in dependencies.

License

This library is licensed under the MIT License, allowing you to use, modify, and distribute the code with minimal restrictions.

You can view the full license here.

Stargazers over time

Stargazers over time