cv-ip

0.2.0 • Public • Published

IP Validator Plugin for Composed Validations Library

Build Status

The Official IP Validator. Supporting IPv4 address, IPv6 address, IPv4-mapped IPv6 address

Installation

npm install cv-ip
var validations = require('composed-validations');
var ipValidator = require('cv-ip')(validations);
 
// The accepts option is optional.
// If you don't pass, will accept ipv4 and ipv6 ips
 
var validator = ipValidator({accepts: ['ipv4']})
 
validator.test("127.0.0.1") // will return 127.0.0.1
 
validator.test("1:2:3:4:5:6:7:8") // false (ValidatorError with the message: is not a valid ip address)
 

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT License

Package Sidebar

Install

npm i cv-ip

Weekly Downloads

3

Version

0.2.0

License

MIT

Last publish

Collaborators

  • djalmaaraujo