
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
基于 VUE2 的 UI 库
.
├── build/ # webpack 配置文件
│ └── ...
├── examples/
│ ├── esm/ # 开发运行的例子,里面会调用封装好的组件
│ │ ├── components # 业务级组件部分
│ └── iife/ # 打包之后文件夹运行即可看到例子
│ │ └── ...
├── src/
│ ├── components/ # emfe组件部分
│ │ └── ...
│ ├── styles/ # emfe的scss文件部分
│ │ ├── mixin # 公共方法代码块的封装
│ │ ├── config.scss # 公共变量的配置
│ │ ├── emfe.scss # 所有样式的主入口
│ │ ├── reset.scss # 清除默认样式
│ │ └── ...
│ └── tools/ # 工具方法部分
│ │ └── ...
│ ├── contant.js # js常量部分
│ └── index.js # 全局注册组件,将组件引入,并添加到emfe对象中
├── .babelrc # Babel 配置
├── .eslintignore # 如果您不想被 Eslint 检测,那么请您在这里把它加上
├── .eslintrc.js # Eslint 配置
├── .gitattributes # git的相关配置
├── .gitignore # 如果您不想被 Git 控制,那么请您在这里把它加上
├── .stylelintignore # 不被 Stylelint 检查
├── .stylelintrc # Stylelint 配置
└── package.json # 启动项目的命令和依赖包等信息聚集地
npm install 安装依赖包
npm start 开发环境
npm run build 打包
确定安装完依赖npm install之后,运行npm start,会自动调到[http://localhost:8081]
确定安装完依赖npm install之后,运行npm run build,手动打开examples/iife/index.html
两者区别,一个是开发环境,一个是生产环境。
FAQs
快速开发产品的UI库
We found that em-fe 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.