
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
api-formatter
Advanced tools
A utility to send formatted json responses as an express response
const express = require('express')
const Api = require('api-formatter').Api
let app = express()
// Register the middleware
app.use(Api.middleware({ name: 'My Fancy Api' }))
// Sending formatted data
app.get('/', (req, res) => {
res.api.sendData({ something: 'cool!' })
})
// Sending a formatted failure
app.get('/wip', (req, res) => {
res.api.sendFail('Not implemented yet', 418)
})
// Automatically catching errors
app.get('/bad', (req, res) => {
req.api.catch(api => {
throw new Error('Something went wrong :S')
})
})
{
"meta": {
"success": true,
"messages": [],
"name": "My Fancy Api",
"version": "0.1.2"
},
"data": {
"something": "cool!"
}
}
{
"meta": {
"success": false,
"messages": ["Something went wrong :S"],
"name": "My Fancy Api",
"version": "0.1.2"
},
"data": null
}
| Name | Use |
|---|---|
name | The name of your api, defaults to your package.json name |
version | The version of your api, defaults to your package.json version |
httpError | Whether a failed response should return a HTTP/400, defaults to true |
import express from 'express'
import { Api } from 'api-formatter'
let app = express()
app.use(Api.middleware({ name: 'dogs-api', version: 'v1' }))
app.get('/', (req, res) => {
res.api.sendData({ msg: 'Hey!' })
})
app.get('/error', (req, res) => {
res.api.sendFail(['Oops, something went wrong :S'])
})
app.listen(3000, () => console.log('Listening on :3000'))
The success response will be:
GET http://localhost:3000→ http/200
{
"meta": {
"success": true,
"messages": [],
"status": 200,
"name": "dogs-api",
"version": "v1"
},
"data": { "msg": "Hey!" }
}
And the fail response will be:
GET http://localhost:3000/error→ http/400
{
"meta": {
"success": false,
"messages": ["Oops, something went wrong :S"],
"status": 400,
"name": "dogs-api",
"version": "v1"
},
"data": null
}
FAQs
Format json responses in a meta-data structure
We found that api-formatter 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.