@playgrounds/codegen
v0.0.17
Published
React 前端项目脚手架工具,用来创建、管理、调试 web 应用
Downloads
2
Readme
codegen
React 前端项目脚手架工具,用来创建、管理、调试 web 应用
Usage
yarn add typescript --global // 请先全局安装
npm install typescript -g
npm install -g @playgrounds/codegen
// 安装完之后,请命令行工具中使用
codegen -V // 查看版本
codegen serve --port=3000 // 启动服务,端口号为3000
codegen build // 构建应用
内置的变量定义
DISPLAY_NAME = youAppName
DOMAIN = xxx.com //当前发布的域名地址
API_URL = // 接口地址,如果有需要可以使用
在应用目录下创建一个 app-config.ts 配置文件,内容如下:
const config = {
name: "yourAppName",
webpackConfig: {
...
},
};
export default config;
注意事项
全局安装 typescript