
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
获取 Koa 框架的属性用于调试和测试
npm i koa-debug
按照以下方式放在所有中间件之前:
'use strict'
const Koa = require('koa')
const debug = require('koa-debug')
const bodyParser = require('koa-bodyparser')
const Router = require('koa-router')
const app = new Koa()
const router = new Router()
// 放在其他中间件之前
app.use(debug())
app.use(bodyParser())
router.post('/path/to', ctx => {
ctx.body = 'hello world'
})
app.use(router.routes())
app.listen(8002)
你可以按照以下方式进行配置:
app.use(debug({
disabled:false,
mode:'response'
}))
| 参数 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| disabled | boolean | false | 是否关闭功能 |
| mode | string | response | 调试模式:'response' => 直接作为响应返回,'console' => 在控制台打印 |
{
"request": {
"headers": {
"content-type": "application/json",
"user-agent": "PostmanRuntime/7.26.3",
"accept": "*/*",
"host": "127.0.0.1:8002",
"accept-encoding": "gzip, deflate, br",
"connection": "keep-alive",
"content-length": "16"
},
"url": "/path/to?id=12&name=mark",
"origin": "http://127.0.0.1:8002",
"href": "http://127.0.0.1:8002/path/to?id=12&name=mark",
"method": "POST",
"path": "/path/to",
"query": {
"id": "12",
"name": "mark"
},
"querystring": "id=12&name=mark",
"search": "?id=12&name=mark",
"host": "127.0.0.1:8002",
"hostname": "127.0.0.1",
"protocol": "http",
"secure": false,
"ips": [],
"ip": "::ffff:127.0.0.1",
"subdomains": [],
"body": {
"name": "inlym"
},
"rawBody": "{\"name\":\"inlym\"}"
},
"response": {
"headers": {
"content-type": "text/plain; charset=utf-8",
"content-length": "5"
},
"status": 200,
"message": "OK",
"body": "hello"
}
}
FAQs
获取Koa框架所有的属性用于调试和测试
The npm package koa-debug receives a total of 6 weekly downloads. As such, koa-debug popularity was classified as not popular.
We found that koa-debug 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
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.