Gathering detailed insights and metrics for neoip
Gathering detailed insights and metrics for neoip
Gathering detailed insights and metrics for neoip
Gathering detailed insights and metrics for neoip
npm install neoip
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
6 Stars
112 Commits
1 Forks
2 Branches
1 Contributors
Updated on 19 Nov 2024
TypeScript (98.81%)
JavaScript (1.19%)
Cumulative downloads
Total Downloads
Last day
-52.4%
1,529
Compared to previous day
Last week
9.7%
11,556
Compared to previous week
Last month
184.6%
40,506
Compared to previous month
Last year
0%
57,218
Compared to previous year
IP address utilities for node.js, forked from indutny/node-ip
.
Version 2.x aims to be API compatible with indutny/node-ip
. If you need
strict compatibility with the original version use the latest 2.x version.
Version 3.x has a very similar API, but has been refactored internally to remove edge cases introduced by atypical IP address formats. If you're starting a new project, or are willing to do some minor remedial work, use the latest 3.x.
3.x exports versions for ESM and for CommonJS.
1npm install neoip
1git clone https://github.com/zaptic/neoip.git
Get your ip address, compare ip addresses, validate ip addresses, etc.
1import * as ip from 'neoip'; 2// Or const ip = require("neoip"); 3 4ip.address(); // my ip address 5ip.isEqual('::1', '::0:1'); // true 6ip.toBuffer('127.0.0.1'); // Buffer([127, 0, 0, 1]) 7ip.toString(new Buffer([127, 0, 0, 1])); // 127.0.0.1 8ip.fromPrefixLen(24); // 255.255.255.0 9ip.mask('192.168.1.134', '255.255.255.0'); // 192.168.1.0 10ip.cidr('192.168.1.134/26'); // 192.168.1.128 11ip.not('255.255.255.0'); // 0.0.0.255 12ip.or('192.168.1.134', '0.0.0.255'); // 192.168.1.255 13ip.isPrivate('127.0.0.1'); // true 14ip.isV4Format('127.0.0.1'); // true 15ip.isV6Format('::ffff:127.0.0.1'); // true 16 17// operate on buffers in-place 18const buf = Buffer.alloc(128); 19const offset = 64; 20ip.toBuffer('127.0.0.1', buf, offset); // [127, 0, 0, 1] at offset 64 21ip.toString(buf, offset, 4); // '127.0.0.1' 22 23// subnet information 24ip.subnet('192.168.1.134', '255.255.255.192'); 25// { networkAddress: '192.168.1.128', 26// firstAddress: '192.168.1.129', 27// lastAddress: '192.168.1.190', 28// broadcastAddress: '192.168.1.191', 29// subnetMask: '255.255.255.192', 30// subnetMaskLength: 26, 31// numHosts: 62, 32// length: 64, 33// contains: function(addr){...} } 34 35// This is equivalent to the above 36ip.cidrSubnet('192.168.1.134/26'); 37 38// range checking 39ip.cidrSubnet('192.168.1.134/26').contains('192.168.1.190'); // true 40 41// ipv4 long conversion 42ip.toLong('127.0.0.1'); // 2130706433 43ip.fromLong(2130706433); // '127.0.0.1'
This software is licensed under the MIT License.
Copyright Fedor Indutny, 2012. Copyright Juliand Digital Ltd, and other contributors 2024.
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.
No vulnerabilities found.
No security vulnerabilities found.