
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@vsirrr/qa-console
Advanced tools
npm i -D @vsirrr/qa-console
// 1. 在 app.ux 中进行初始化
if(process.env.NODE_ENV === 'development') {
require('@vsirrr/qa-console')
}
// 2. 在使用该功能的地方引入 qa-console 组件 不支持单次引用多页面使用
<import name="qa-console" src="@vsirrr/qa-console/component.ux"></import>
<qa-console></qa-console>
// 3. 接口提供的 @system.fetch 无法被重写。所以在封装的请求库中使用 console.debug() 方法,收集请求与响应的信息
import $fetch from '@system.fetch'
function request(params) {
return new Promise((resolve, reject) => {
$fetch.fetch({
url: params.url,
method: params.method,
data: params.data,
responseType: 'json',
success: (response) => {
console.debug({
url: params.url,
method: params.method,
params: params.data,
data: response.data,
status: 'success',
})
resolve(response.data)
},
fail: (error, code) => {
const data =
Object.prototype.toString.call(error).slice(8, -1) === 'Object'
? { code, ...error }
: { code, error }
console.debug({
data,
url: params.url,
method: params.method,
params: params.data,
status: 'error',
})
reject(error)
},
})
})
}
FAQs
a console toolkit like vconsole for kuickapp
We found that @vsirrr/qa-console 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.