
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.
@system-plugin/plugin-vue2
Advanced tools
本插件适用于 Vue2.x 构建的应用,主要用于应用外挂插件。

npm install @system-plugin/plugin-vue2
// main.js
import DSPlatformPlugin from '@system-plugin/plugin-vue2'
import '@system-plugin/plugin-vue2/lib/ds_platform_plugin.css'
Vue.use(DSPlatformPlugin)
<!-- Layout/index.vue2 -->
<template>
<div id="Layout">
<!-- ... -->
<index-interpretation :token="token" :baseUrl="baseUrl" />
</div>
</template>
<script>
// token 及 baseUrl 请自行获取传入
import { getToken } from '@/utils/auth'
export default {
name: 'Layout',
data() {
return {
token: getToken(),
baseUrl: '/toPlugin'
}
}
}
</script>
需要修改 nginx 配置,解析 baseUrl 到插件中心,如:
location ^~/toPlugin {
proxy_pass http://172.16.1.98:9999/dev-api;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
}
FAQs
> 本插件适用于 Vue2.x 构建的应用,主要用于应用外挂插件。
The npm package @system-plugin/plugin-vue2 receives a total of 3 weekly downloads. As such, @system-plugin/plugin-vue2 popularity was classified as not popular.
We found that @system-plugin/plugin-vue2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.