Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Emergency Exits for Diet.js
If you're trying to use Promises in Diet you may have noticed that you can't just throw an error to trigger a 500 Sever Error, since it ends up swallowed by the Promise chain. As far as I can tell, there's no way to directly call the error route in Diet.js.
This module provides middleware to add a method to the signal object ($) to throw an error out of a Promise chain.
npm install --save diet-500
Note that in modern versions of NPM (>= 5) you don't actually need the --save
flag.
const server = require('diet')
const serverError = require('diet-500')
app = server()
app.listen('http://localhost:8888')
app.header(serverError)
app.get('/', function ($) {
return Promise.resolve().then(() => {
throw new Error('Time to die!')
}).catch(err => {
$.err(err)
})
})
By default, the method attached to the signal is err
. You can specify a different method name
if you like.
const server = require('diet')
const serverError = require('diet-500').methodName('error500')
app = server()
app.listen('http://localhost:9999')
app.header(serverError)
app.get('/', function ($) {
return Promise.reject(new Error('GOING DOWN'))
.catch(err => {
$.error500(err)
})
})
FAQs
Manually send 500 server errors in Diet.js
We found that diet-500 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.