
Research
/Security News
Shai Hulud Strikes Again (v2)
Another wave of Shai-Hulud campaign hits npm.
@haxtra/result
Advanced tools
Result/response object with HTTP-friendly status codes, for use with web APIs
Result/response object with HTTP-friendly status codes, for use with web APIs.
npm install @haxtra/result
const Result = require('@haxtra/result')
res = Result.ok()
// res.ok (true)
// res.data (undefined)
// res.httpCode (200)
res = Result.success(payload, httpCode, {key:value, foo:bar})
// res.ok (true)
// res.data (payload)
// res.httpCode (httpCode|200)
// res.key (value)
// res.foo (bar)
res = Result.created(id)
// res.ok (true)
// res.data (id)
// res.httpCode (201)
res = Result.error()
// res.error (true)
// res.httpCode (500)
res = Result.error(msg, httpCode, {key:value, foo:bar})
// res.error (msg|true)
// res.httpCode (httpCode|500)
// res.key (value)
// res.foo (bar)
res = Result.notFound(msg)
// res.error (msg|Not Found)
// res.httpCode (404)
// 2xx
Result.ok() // 200
Result.created() // 201
Result.accepted() // 202
Result.noContent() // 204
// generic 200
Result.success(payload?, data?)
// 4xx
Result.badRequest() // 400
Result.unauthorized() // 401
Result.paymentRequired() // 402
Result.forbidden() // 403
Result.notFound() // 404
Result.methodNotAllowed() // 405
Result.notAcceptable() // 406
Result.conflict() // 409
Result.gone() // 410
// 5xx
Result.serverError() // 500
Result.notImplemented() // 501
Result.serviceUnavailable() // 503
// generic 500
Result.error(error?, httpCode?, data?)
MIT
FAQs
Result/response object with HTTP-friendly status codes, for use with web APIs
We found that @haxtra/result 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
Another wave of Shai-Hulud campaign hits npm.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.