
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
is-valid-domain
Advanced tools
Validate domain name in JavaScript
https://lab.miguelmota.com/is-valid-domain
npm install is-valid-domain
const isValidDomain = require('is-valid-domain')
isValidDomain('example.com') // true
isValidDomain('foo.example.com') // true
isValidDomain('bar.foo.example.com') // true
isValidDomain('exa-mple.co.uk') // true
isValidDomain('xn--80ak6aa92e.com') // true
isValidDomain('_dnslink.ipfs.io') // true
isValidDomain('exa_mple.com') // false
isValidDomain('-example.co.uk') // false
isValidDomain('example') // false
isValidDomain('ex*mple.com') // false
isValidDomain('*.example.com') // false
isValidDomain('*.com') // false
isValidDomain(3434) // false
isValidDomain('foo.example.com', {subdomain: true}) // true
isValidDomain('foo.example.com', {subdomain: false}) // false
isValidDomain('*.example.com', {wildcard: false}) // false
isValidDomain('*.example.com', {wildcard: true}) // true
isValidDomain('*.example.com', {subdomain: false, wildcard: true}) // false
isValidDomain('はじめよう.みんな') // false
isValidDomain('はじめよう.みんな', {allowUnicode: true}) // true
isValidDomain('ai.') // false
isValidDomain('ai.', {topLevel: true}) // true
view more examples
npm test
Adding new domains:
data/second_level_domains.csvnpm run generate to generate JSON map filenpm testQ: Why is trailing dot . in domain names verified as true?
The validator package is a library of string validators and sanitizers. It includes a function `isFQDN` that can be used to validate domain names. Compared to is-valid-domain, validator offers a broader range of validation functions beyond just domain validation.
The valid-url package provides functions to validate URLs and URIs. While it can validate domain names as part of a URL, it is more focused on the overall URL structure rather than just the domain. It is less specialized than is-valid-domain for domain-specific validation.
The is-url package is a simple utility to check if a string is a valid URL. It includes domain validation as part of its URL validation process. However, it is not as focused on domain-specific rules as is-valid-domain.
FAQs
Validate domain name
We found that is-valid-domain demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.