
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.
@roadup/smi
Advanced tools
小程序打包器
支持 subPackages, 任何不再subPackages中定义的页面将分发到主包中
node_modules中的页面和组件会提取到dist目录下
#编译结构
Files = {
"/pages/home/home.wxml": File {
path: "/pages/home/home.wxml",
output: "/dist/pages/home/home.wxml",
content: "XXXXX",
requires: [ "/pages/me/me.wxml", "/pages/me/me.scss", "/pages/me/me.json", "/pages/me/me.js", "/pages/other/other", "/images/home.png"],
},
"/images/home.png": File{
path: "/images/home.png",
output: "/dist/images/home.png",
content: "XXXXXX",
requires: []
}
}
Page {
wxml: "/pages/home/home.wxml",
json: "/pages/home/home.wxml",
js: "/pages/home/home.js",
style: "/pages/home/home.scss"
}
Component {
wxml: "/pages/home/home.wxml",
json: "/pages/home/home.wxml",
js: "/pages/home/home.js",
style: "/pages/home/home.scss"
}
completion = {
files: Files{ },
pages: { "/pages/home/home": Page{} },
components: { "/components/button/button": Component{ } }
}
#build 默认会检查执行目录的 .env 文件 可在执行时添加env文件, 默认为beta.env
npx smi beta.env
FAQs
We found that @roadup/smi 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.