🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@sideway/address

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sideway/address

Email address and domain validation

5.0.0
latest
Source
npm
Version published
Weekly downloads
11M
1%
Maintainers
1
Weekly downloads
 
Created

What is @sideway/address?

The @sideway/address package is a library for email and domain validation. It provides utilities to validate and parse email addresses and domains according to specific standards and rules.

What are @sideway/address's main functionalities?

Email Validation

This feature allows you to validate email addresses to ensure they meet standard email formatting rules.

const Address = require('@sideway/address');
const email = 'example@example.com';
const result = Address.email.isValid(email);

Domain Validation

This feature enables you to validate domain names against standard domain formatting and naming rules.

const Address = require('@sideway/address');
const domain = 'example.com';
const result = Address.domain.isValid(domain);

Other packages similar to @sideway/address

Keywords

email

FAQs

Package last updated on 02 May 2022

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