Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@nuxtjs/youch
Advanced tools
Pretty error reporting for Node.js 🚀 (Modified for Nuxt.js & SSR Bundles)
Pretty error reporting for Node.js 🚀 (Modified for Nuxt.js & SSR Bundles)
Youch is inspired by Whoops but with a modern design. Reading stack trace of the console slows you down from active development. Instead Youch print those errors in structured HTML to the browser.
npm i --save @nuxtjs/youch
Youch is used by AdonisJs and Nuxt.js, but it can be used by express or raw HTTP server as well.
const Youch = require('@nuxtjs/youch')
const http = require('http')
http.createServer(function (req, res) {
// PERFORM SOME ACTION
if (error) {
const youch = new Youch(error, req)
youch
.toHTML()
.then((html) => {
res.writeHead(200, {'content-type': 'text/html'})
res.write(html)
res.end()
})
}
}).listen(8000)
Checkout CHANGELOG.md file for release history.
Checkout LICENSE.txt for license information Harminder Virk (Aman) - https://github.com/thetutlage
FAQs
Pretty error reporting for Node.js 🚀 (Modified for Nuxt.js & SSR Bundles)
The npm package @nuxtjs/youch receives a total of 152,717 weekly downloads. As such, @nuxtjs/youch popularity was classified as popular.
We found that @nuxtjs/youch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.