Socket
Socket
Sign inDemoInstall

inet_xtoy

Package Overview
Dependencies
40
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    inet_xtoy

inet_ntop() and inet_pton() bindings for Node.js


Version published
Weekly downloads
619
decreased by-34.84%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

node-inet-xtoy

Build and Test CI

inet_ntop() and inet_pton() bindings for Node.js

Installation

npm install inet_xtoy

Example

const { inet_ntop, inet_pton } = require('inet_xtoy');

console.log(inet_pton('127.0.0.1'));
console.log(inet_pton('::1'));
console.log(inet_ntop(inet_pton('127.0.0.1')));
console.log(inet_ntop(inet_pton('::1')));

API

inet_ntop(buf) converts an IPv4 or IPv6 address buf from binary to text form.

buf is expected to be a 4 (IPv4) or 16 (IPv6) bytes long String or Buffer.

Returns the IP address as a string or throws an Error in case the call to inet_ntop(3) fails.

Throws TypeError when the number of arguments is not 1, or when buf is neither String nor Buffer, or when the length of buf si neither 4 nor 16.

inet_pton(ip) converts an IPv4 or IPv6 address buf from text to binary form.

ip is expected to be a string. If ip is not a valid IP address, the function returns null.

Returns Buffer with binary form of the given ip, the length of the buffer is either 4 or 16 bytes.

Throws TypeError when the number of arguments is not 1, or when ip is not a string.

Throws Error when a call to inet_pton(3) fails.

Keywords

FAQs

Last updated on 24 May 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc