
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@maeum/plugins
Advanced tools
Plugins of the Maeum boilerplate. ResponseTime, Flag variable plugins includes.
Response time add on header field.
import fastify from 'fastify';
import { responseTimePlugin } from '@maeum/plugins';
const server = fastify();
server
.register(responseTimePlugin, {
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Server-Timing
headerKey: 'Server-Time',
isExecute: () => config.server.runMode !== 'production',
});
| Name | Desc. |
|---|---|
| headerKey | header key for add response time. |
| isExecute | function execution result decide what response time value add or not |
Varity flags add on request.
import fastify from 'fastify';
import { requestFlagsPlugin } from '@maeum/plugins';
const server = fastify();
server
.register(requestFlagsPlugin);
| function | Desc. |
|---|---|
| setRequestLogging | that indicate what request is logged or not |
| getRequestLogging | get request is logged |
| setRequestError | that store what error of request |
| getRequestError | get error in request |
| setRequestPayload | that store what payload in reply |
| getRequestPayload | get payload in reply |
This function need manual works. For example, getRequestError return error before you have to set error variable using setRequestError.
FAQs
Maeum server flag plugins
We found that @maeum/plugins 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.