Skip to content

Latest commit

 

History

9 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

Stars

0 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages