Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@type-ddd/email
Advanced tools
Library that provides TypeScript type definitions for handling Email in Domain-Driven Design contexts. It facilitates the validation and manipulation of emails.
@type-ddd/email
The @type-ddd/email module provides a class Email for handling email addresses in TypeScript. It includes methods for validating email addresses, extracting parts of the email (such as nickname and domain), and creating instances of validated emails.
Install rich-domain
and @type-ddd/email
with your favorite package manager:
npm i rich-domain @type-ddd/email
#OR
yarn add rich-domain @type-ddd/email
import { Email } from '@type-ddd/email';
// Check if is valid value
const isValid = Email.isValid('sample@domain.com');
// true
// Initialize Email instance with a valid email address
const email = Email.init('example@example.com');
// OR
// Create Email instance from provided email address
const result = Email.create('example@example.com');
// Get parts of the email address
const nickname = email.nick();
const domain = email.domain();
If you want to block some specifics domains
import { Email } from '@type-ddd/email';
const list = ['hack.com'];
Reflect.set(Email, 'BLOCKED_DOMAINS', list);
const isValid = Email.isValid('user@hack.com');
// false
const isValid = Email.isValid('user@gmail.com');
// true
If you want to allow only some specifics domains
import { Email } from '@type-ddd/email';
const list = ['my-company.com'];
Reflect.set(Email, 'VALID_DOMAINS', list);
const isValid = Email.isValid('user@my-company.com');
// true
const isValid = Email.isValid('user@gmail.com');
// false
FAQs
Library that provides TypeScript type definitions for handling Email in Domain-Driven Design contexts. It facilitates the validation and manipulation of emails.
The npm package @type-ddd/email receives a total of 44 weekly downloads. As such, @type-ddd/email popularity was classified as not popular.
We found that @type-ddd/email demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.