host-validator

A host (or hostname) formatting validator.

Usage no npm install needed!

<script type="module">
  import hostValidator from 'https://cdn.skypack.dev/host-validator';
</script>

README

node-host-validator

Latest NPM release NPM Downloads TravisCI Build Status Test Coverage Code Climate License Dependencies Dev Dependencies Greenkeeper badge

Table of Contents

Synopsis

A host formatting validator.

Usage

   const {host} = require('host-validator');

   # Validate an IPv4 address
   host('172.17.0.5').ipv4().validate(); # true -> host is valid.
   host('256.15.1789').ipv4().validate(); # false -> host is invalid.

   # Validate an IPv6 address
   host('2001:0db8:0a0b:12f0:0000:0000:0000:0001').ipv6().validate(); # true -> host is valid.
   host('[2001:0db8:0a0b:12f0:0000:0000:0000:0001]').ipv6().validate(); # true -> host is valid.
   host('foo').ipv6().validate(); # false -> host is invalid.

   # Validate a hostname (RFC 1123)
   host('').hostname().validate(); # true -> host is valid.
   host('[2001:0db8:0a0b:12f0:0000:0000:0000:0001]').hostname().validate(); # true -> host is valid.
   host('foo').ipv6().validate(); # false -> host is invalid.

Installation

npm install host-validator

API Reference

Please refer to API documentation.

Tests

Run unit tests

npm test

Compatibility

Node

Tested using Node v9.4.0.

Browser

Untested at this time.

Issues

Feel free to submit issues and enhancement requests.

Contributing

Please refer to project's style guidelines and guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.

  1. Fork the repo on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Push your work back up to your fork
  5. Submit a Pull request so that we can review your changes

NOTE: Be sure to merge the latest from "upstream" before making a pull request!

Credits

Thanks to:

History

v0.1.0 (2018-02-08)

v0.1.0-beta2 (2018-02-05)

  • Fix bug [#1]

v0.1.0-beta1 (2018-02-02)

  • Fix errors and update documentation (API, README).
  • Improve code coverage.
  • Remove extended class to use with {Promise} (in the future, promisified host-validator will be included in another package).

v0.1.0-alpha2 (2018-02-02)

  • Fix errors and update documentation (API, README).
  • Improve code coverage.

v0.1.0-alpha1 (2018-02-02)

Initial version.

License

The MIT License

Copyright (c) 2018 SAS 9 FĂ©vrier

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.