Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
express-easy-helper
Advanced tools
Simple helper module for express
yarn
yarn add express-easy-helper
npm
npm install express-easy-helper --save
import { success, unauthorized, forbidden, error } from "express-easy-helper";
import express from "express";
const app = express();
// success
app.get("/", (req, res) => {
success(res, { hello: "world" });
});
// unauthorized
app.get("/unauthorized", (req, res) => {
unauthorized(res);
});
// forbidden
app.get("/protected", (req, res) => {
forbidden(res);
});
// error
app.get("/error", (req, res) => {
error(res);
});
// 200
success(res);
// 400
badRequest(res);
// 401
unauthorized(res);
// 403
forbidden(res);
// 404
notFound(res);
//405
unsupportedAction(res);
//422
invalid(res);
// 500
error(res);
// Basic
success(res);
// Code status
success(res, 201);
// Data
success(res, { hello: "world" });
// Code status and data
success(res, 201, { hello: "world" });
MIT © Leonardo Rico
FAQs
Simple helper module for express
The npm package express-easy-helper receives a total of 3 weekly downloads. As such, express-easy-helper popularity was classified as not popular.
We found that express-easy-helper 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.