# fis3-base-es6 **Repository Path**: icode2017/fis3-base-es6 ## Basic Information - **Project Name**: fis3-base-es6 - **Description**: 基于 FIS3 的 ES6 开发环境 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-01-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 基于FIS3的es6开发环境的基础配置 ## 功能描述 本项目为es6开发环境的基础配置 ## 目录结构 ``` debug.bat -- 在线开发编译批处理 run.bat -- 启动开发服务器 README.md -- 说明文档 src -- 源码 |-- modules -- 模块化js目录 |-- static -- 非模块化目录,用于存入第三方js库 |-- node_modules -- 用于存入npm安装后的js库 |-- fis-conf.js -- FIS3配置文件 |-- package.json -- node项目包文件 ``` ## FIS命令 ``` 开发调试: fis3 release -d ../output -wL 生产发布: fis3 release prod -d ../dist 启动服务: fis3 server start --root ../output ``` ## 关于生产环境发布的说明 ``` index.html -- 首页文件 pdk -- 打包目录 |-- common.js 所有node_modules下依赖js类库的集合包 |-- common.css 所有node_modules下依赖css,scss的集合包 |-- aio.js 所有modules下模块类的集合包 |-- aio.css 所有modules下css的集合包 static -- 第三方非模块化资源目录 ```