
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
将日志信息显示在页面上,便于调试
npm i sx-log
| 参数名 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| logs | Array | [] | 数据集合 |
<template>
<div>
<log :logs="logs" />
</div>
</template>
<script>
import Log from 'sx-log';
export default {
components: {
Log
},
data() {
return {
logs: [
1, // 可以是数字
'string', // 可以是字符串
{key: 'value'}, // 可以是对象
[0,1,2,3,4], // 可以是数组
],
}
}
}
</script>
logs 可以是数字字符串对象数组等,但需为 JSON 格式
main.js
import {addLog} from "sx-log";
console.log = addLog;
vue组件中调用
<template>
<div>
<!--不需要传参-->
<log />
</div>
</template>
<script>
import Log from 'sx-log';
export default {
components: {
Log
}
}
</script>
logs 为数组格式,集合中的元素应为json数据
FAQs
将日志信息显示在页面上,便于调试
The npm package sx-log receives a total of 0 weekly downloads. As such, sx-log popularity was classified as not popular.
We found that sx-log 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.