Socket
Socket
Sign inDemoInstall

is-domain-name

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-domain-name

Validate Domain Names as outlined by RFC 2181


Version published
Weekly downloads
8.3K
increased by9.85%
Maintainers
1
Weekly downloads
 
Created
Source

is-domain-name

Validate Domain Names as outlined by RFC 2181

Install

npm install is-domain-name

Usage

Domain names are composed of labels interleaved with a separator (.). Domain as allowed a total length of 255 chars including separators. Labels should be between 1 and 63 octets.

Labels allows domains to form a hierarchy, with the right most label acting as the root. The leftmost label is often called the TLD (Top-Level Domain), the 2nd leftmost informally called the domain and any label to the right of those called subdomains.

A common domain with only a single label is localhost.

This module checks the following:

  • The domain is no longer than 255 chars
  • The domain is at least 2 chars. Even though a is technically allowed, this module does not allow it
  • Labels are between 1 and 63 chars
  • Labels start and end with alpha-numeric chars, allowing dashes in between
  • An optional root dot can be allowed with a flag, eg. example.com.
const assert = require('assert')
const isDomainName = require('is-domain-name')

assert.ok(isDomainName('localhost'))
assert.notOk(isDomainName('-.-'))

API

isDomainName(domainName, rootDot)

domainName

Type: String

rootDot

Type: Boolean
Default: false

Whether or not to validate for a trailing dot, signifying the root

  • is-http-url

License

ISC

Keywords

FAQs

Package last updated on 25 Jul 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc