
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.
rexjs-loader
Advanced tools
npm install rexjs-loader
git clone https://github.com/china-liji/Rexjs-loader.git
https://github.com/china-liji/Rexjs-loader
于 webpack.config.js 中的使用示例:
module.exports = {
entry: [
"./a.js"
],
output: {
path: __dirname,
filename: "a.min.js"
},
module: {
// 方式1:loaders
loaders: [
require("rexjs-loader").getConfig({
// 可指定模块的根目录,即 import "/xx.js" 相对的根目录
root: __dirname,
/*
* 是否不需要合并 rex-browser-helper.min.js 文件,
* 一般使用于 rexjs 解析 es6 的环境中,
* 因为 rex.min.js 已经包括了 rex-browser-helper.min.js 文件。
*/
unhelper: false
})
],
// 方式2:rules
rules: [
require("rexjs-loader").getRule({
root: __dirname,
unhelper: false
}
)]
}
};
https://github.com/china-liji/Rexjs
http://rexjs.org/#!/book/start/index.md
此解析器未引用任何第三方插件及类库,属于完全独立、创新的一款 JavaScript 语法编译器,它是 100% 纯中国制造!
FAQs
Rexjs-loader - 是 webpack 利用 Rexjs 打包 es6 语法时,所依赖的 loader
We found that rexjs-loader 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.