
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
email-syntax
Advanced tools
Email addresses syntax validations library
Syntax email addresses verification based on RFC5321 and RFC5322. Version 2 is full remake of original one using TypeScript. Now it's a class with one static method "validate". Library can be used in Node.js back-end and in Angular 4 front-end projects.
Install Email Syntax as an npm module and save it to your package.json file as a dependency:
npm install --save email-syntax
Usage of validator is simple as 2 + 2. You need to import class and then use its "validate()" method.
const EmailSyntax = require('email-syntax').EmailSyntax;
if (EmailSyntax.validate('test@some-mail.com')){
console.log('This address is valid');
}
On server environment you can use additional methods:
import { EmailSyntax } from 'email-syntax';
function isEmailValid(address): boolean{
return EmailSyntax.validate(address);
}
npm test
FAQs
Email addresses syntax validations library
The npm package email-syntax receives a total of 6 weekly downloads. As such, email-syntax popularity was classified as not popular.
We found that email-syntax 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.