
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
express-dry
Advanced tools
A simple lightweight Express.js Validation Library (With predefined validators [WIP])
npm install express-dry
or
yarn add express-dry
const { Router } = require('express')
const dry = require('express-dry')
const router = Router()
router.post('/login', dry.body({
username: { type: String },
password: { type: String },
foo: { type: Boolean, required: false }
}), async (req, res) => {})
module.exports = router
After this the .body
will return a middleware with packed automatic validation inside and it will directly return error response to client with a {message: ''}
in it
params
and query
dry.params({ id: { type: Number } }, { allowExtraKeys: false })
dry.query({ search: { type: String, required: false } }, { allowExtraKeys: true, statusCode: 200 })
router.post('/login', dry.body({
name: { type: String },
age: { type: Number, min: 18, max: 35 },
password: { type: String, minLength: 8, maxLength: 20 },
consent: { type: Boolean, required: false }
}, { allowExtraKeys: false }), async (req, res) => {})
required: false
@uditkarode for drytypes
MIT ©Swapnil Soni
FAQs
A simple express.js lightweight body, params and query validator.
We found that express-dry 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.