
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
json-api-error
Advanced tools
JSON API Errors is a collection of popular errors which is format under of JSON API Specification. More detailed in here
The easiest way to install json-api-error is using NPM. If you have Node.js installed, it is most likely that you have NPM installed as well.
$ npm install json-api-error
At the current implementation, json-api-error support the following common errors
BadRequestErrorUnauthorizedErrorMalformedErrorForbiddenErrorNotFoundErrorMethodNotAllowedErrorNotAcceptableErrorRequestTimeoutErrorUnsupportedMediaTypeErrorInternalErrorNotImplementedErrorBadGatewayErrorServiceUnavailableErrorGatewayTimeoutErrorimport { BadRequestError } from 'json-api-error';
throw new BadRequestError('Request is invalid');
import { BadRequestError } from 'json-api-error';
throw new BadRequestError({
id: 'BadRequestError',
code: 'BadRequestError',
title: 'BadRequestError',
detail: 'The #/userName must be number'
}));
import JsonApiError from 'json-api-error';
throw new JsonApiError({
id: 'RequestEntityTooLargeError',
status: '413',
code: 'RequestEntityTooLargeError',
title: 'RequestEntityTooLargeError',
detail: 'Request Entity Too Large'
});
import { AggregateJsonApiError } from 'json-api-error';
throw new AggregateJsonApiError([
new BadRequestError('Something went wrong'),
new BadRequestError('Request is valid')
], 400);
json-api-error also ships a Express middleware to handle these JSON API Errors. This middleware will catch JSON API Error and return response for your end-user as the following example format (including the status response):
{
errors: [{
id: 'NotFoundError',
status: '404',
code: 'NotFoundError',
title: 'NotFoundError',
detail: 'Resource was not found'
}]
}
To use this, configure your Express app
import { jsonApiErrorHandler } from 'json-api-error/middlewares';
app.use(jsonApiErrorHandler);
Note: For best practice, please place jsonApiErrorHandler below utilized middlewares.
| Properties | Detail | Type | Default Value |
|---|---|---|---|
| id | a unique identifier for this particular occurrence of the problem | string | equal to error name |
| links | a links object, more detailed in here | object | N/A |
| status | the HTTP status code applicable to this problem, expressed as a string value | string | equal to HTTP code |
| code | an application-specific error code, expressed as a string value | string | equal to error name |
| title | a short, human-readable summary of the problem | string | equal to error name |
| detail | a human-readable explanation specific to this occurrence of the problem | string | equal to error name |
| source | an object containing references to the source of the error, more detailed in here | object | N/A |
| meta | a meta object containing non-standard meta-information about the error. | object | N/A |
MIT
FAQs
JSON API Errors
The npm package json-api-error receives a total of 6 weekly downloads. As such, json-api-error popularity was classified as not popular.
We found that json-api-error 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.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.