该脚手架可快速生成一个可用于生产环境的基本项目,满足基本上的react项目开发(即将支持Vue),如开发者要做完全贴合自己的项目的模板,则需要更定制化的脚手架工具,目前脚手架已帮你做好以下配置
开源不易,需要鼓励。给 coderlfm 项目点个 star吧
GitHub
如果你在使用过程中遇到问题或者一些建议,可以在此处提交 issues
- 打包不生成 sourceMap 文件
- 动态配置路由表(兼容 Antd Tree)
- 动态引入组件路由
- 动态引入组件
store
- 状态管理库开发者可选择
redux
或@reduxjs/toolkit
- 二次封装
axios
- 配置路径
@
别名,cs vode@
路径提示
# npm
npm install coderlfm -g
# yarn
yarn global add coderlfm
coderlfm create program_name
coderlfm page home
coderlfm page home -d src/home/children
coderlfm page home -s
coderlfm page home -d src/home/children -s
src/store/reducers.js
中已经做过动态引入组件中 reducer
,浏览器中打开 redux 调试工具即可看到数据,无需手动引入组件store
const reducers = {};
const pageDirs = require.context('@/pages', true, /reducer\.js$/)
pageDirs.keys().forEach((dirPath) => {
const dirName = dirPath.split('./')[1].split('/')[0];
dirPath = dirPath.substring(1, dirPath.length)
reducers[dirName] = require('../pages' + dirPath).default
})
export default reducer;
页面路由会根据pages下的文件夹设置同名路由,开发者无需手动添加路由 src/utils/utils.js已做过创建路由的操作,并默认开启懒加载,如开发者不需开启懒加载可手动在此处设置
const createRoutes = (routes) => {
return routes.map(item => {
const ComponentName = lazy(() => import(`@/${item.componentPath}`));
const Component = (<Route path={item.path} render={(routerData) => {
return <Suspense fallback={<div>Loading...</div>}><ComponentName {...routerData}></ComponentName></Suspense>
}} key={item.path} exact />)
if (item.children && item.children.length) {
return [Component, ...createRoutes(item.children)]
} else if (item.componentPath) {
return Component
} else {
return null;
}
})
}
src/router/index.js
已经导出路由表,如要获取路由表做后台导航菜单或者tree树形控件展示可从该文件获取到路由表,路由表结构如以下形式
[
{
path: "/home", // 路由path
key: "/home", // 此key用来tree树形菜单选中
title: '首页', // tree树形菜单中的title
icon: 'HomeOutlined', //左侧导航菜单中的icon
componentPath: "pages/home/statistics", //组件的path路径
exact: true, // 是否精准匹配路由
children:[ // 二级菜单
{
path: '/home/statistics',
key: '/home/statistics',
disabled: true, // tree树形菜单disabled
permanent: true, // 默认菜单,是否常驻
title: '控制台',
icon: 'RiseOutlined',
componentPath: 'pages/home/statistics'
}
]
},
{
...
}
]
- 手动修改路由配置表后续更新
- 后续即将支持Vue