
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
app-exception
Advanced tools
AppException is a small and easy-to-use HTTP error library for Node. It's an addition to HttpException
AppException improves HttpException work making easier to create errors with custom application codes.
import AppException from 'app-exception';
// via the AppException class. Parameters: message, application error code, http error code
const errorOne = new AppException('error message', 9, 500);
// via the createError factory
const errorTwo = AppException.createError();
// via AppException's static HTTP status-specific methods
throw AppException.internalServerError('test', 9);
throw AppException.badRequest('test', 9);
const app = express();
// other stuff
// after all your app.use
app.use(async function (err, req, res, next) {
if(err instanceof HttpException) {
return res.status(err.status).json(err);
}
// other error handling stuff
});
const app = express();
// first app.use
app.use(function (req, res, next) {
Response.response(res);
next();
});
message
{ String } error messagecode
{ String / Integer } application error codeReturns a new AppException object.
const error = AppException.badRequest({
message: 'No user found',
code: 9
})
throw error
message
{ String } error messagecode
{ String / Integer } application error codestatus
{ Integer } http error codeReturns a new AppException object.
throw new AppException('error', 9, 400)
options
{ Object }Return a new AppException object.
const error = AppException.createError({
message: 'No user found',
code: 9,
status: 400
})
throw error
For support and questions contact mail me at team@99xp.org
FAQs
A small and easy-to-use http errors library for Node
The npm package app-exception receives a total of 4 weekly downloads. As such, app-exception popularity was classified as not popular.
We found that app-exception 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
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.