
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@alpinesoft/express-plus
Advanced tools
Lightweight Express.js middleware aimed to create standardised REST APIs
This lightweight Express.js middleware focuses on two main features:
const expressPlus = require('express-plus')
app.use(expressPlus.createMiddleware())
const { Rule } = require('@cesium133/forgjs')
const bodyRules = {
username: new Rule({
type: 'string',
minLength: 3,
maxLength: 120,
notEmpty: true
}),
password: new Rule({
type: 'password',
minLength: 3,
maxLength: 120,
notEmpty: true
})
}
app.post('/', (req, res) => {
const isValid = req.checkBody(bodyRules)
// Error will be sent automatically
if (!isValid) {
return
}
// Continue handling the request if body is valid
})
This will result in:
{
"status": "ERROR",
"error": {
"name": "Invalid request body",
"message": "Could not parse request body, check for invalid or missing fields"
}
}
app.post('/', (req, res) => {
res.resolve({
yourData: 'FOR-EXAMPLE-A-TOKEN'
})
})
This will result in:
{
"status": "SUCCESS",
"payload": {
"yourData": "FOR-EXAMPLE-A-TOKEN"
}
}
res.reject(expressPlus.createHttpError(500, 'Your error', 'Provide a concise error message.'))
or
next(expressPlus.createHttpError(500, 'Your error', 'Provide a concise error message.'))
app.use(expressPlus.createErrorHandler())
Place this middleware usage call after every other to ensure full error handling. To learn more about Express.js error handling follow this link.
You can see a full example here.
FAQs
Lightweight Express.js middleware aimed to create standardised REST APIs
We found that @alpinesoft/express-plus 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.