
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
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.
@fch/fch-cli
Advanced tools
npm i -g @fch/fch-cli
fch new|n [options] [name]
fch.json 务必保证当前的project是有的
{
"collection": "@fch/fch-react-schematic", -- 生成过程用的子schematics
"type": "web", -- 当前的项目类型 web 和 h5 暂时支持
"defaultSrcRoot": "/src/solution/", -- 最好不要更改当前的作用路径
"needRouter": [ -- 哪些生成命令需要额外添加路由注入
"c"
],
"needDto": [ -- 哪些生成命令需要同时生成dto文件
"s"
],
"baseUrl": { -- 设置service、dto、inerface文件夹所在路径
"service": "/src/solution/model/services",
"dto": "/src/solution/model/dto",
"interface": "/src/shared/interface"
}
}
options 可选参数
-d 只能看到生成的目录结构和文件,不会真的生成文件-s 跳过安装node_moduleseg.
fch new my-project 可选h5 和 web
# OR
fch n my-project
fch generate|g <schematic> [name]
schematic 可选参数
c: 生成hooks组件
fch g c <your-component-name>
rc: 生成带有reducer的组件
fch g rc <your-component-name>
s: 生成请求的service文件
fch g s <your-service-name>
d: 生成相应dto文件
fch g d <your-dto-name>
m: 生成相应module模板文件
fch g m <your-module-name>
table: 生成相应component table模板文件
fch g table <your-table-name>
modal: 生成相应modal模板文件
fch g modal <your-modal-name>
在使用webpack打包构建功能的时候必须保证项目根目录中包含fch.json和fch.webpack.config.js ,两个配置文件文件以及环境变量配置文件。

fch.json 中的 type 属性用于区分打包目标为 web 还是 h5
fch.webpack.config.js 用于配置用户自定义的webpack选项
目前只是开放了少数配置,后期陆续增加用户可修改的范围,如果用户不配置这个文件,那么webpack会根据预设的配置进行打包
const path = require('path')
module.exports = {
entry: {
index: './src/index.tsx',
indexSimple: './src/index.simple.tsx'
},
plugins: [
{
plugin: 'html-webpack-plugin',
option: {
template: process.argv[2] == '--build' ? path.resolve(__dirname, './public/index.html') : path.resolve(__dirname, './public/indexMap.html'),
title: '风控三期',
chunks: ['index']
}
},
{
plugin:'html-webpack-plugin',
option: {
filename: 'user-action-report-component.html',
template: path.resolve(__dirname, './public/index.simple.html'),
title: '今日用车报告',
chunks: ['indexSimple']
}
}
]
}
在根目录的
package.json中加入如下配置,然后执行。
"fch:start": "fch start",
"fch:build": "fch build"
FAQs
## 起步
We found that @fch/fch-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

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.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.