# snel **Repository Path**: timteam/snel ## Basic Information - **Project Name**: snel - **Description**: 基于Vue实现的敏捷EPG研发框架及整合组件,能够快速搭建开发EPG项目 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-03-14 - **Last Updated**: 2023-03-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Snel - EPG敏捷开发框架(Vue) ## 🚀 开发环境搭建 | 环 境 | 编码语言 | 编辑器 | |:---:|:---:|:---:| |**[Node](http://nodejs.cn/)**|**[Typescript](http://www.typescriptlang.org/)**|**[VsCode](https://code.visualstudio.com/)**| ## 💡 目录结构 ```d . |-- dist // 编译代码 |-- public // html及页面ico文件 |-- src // 源代码 |-- assets // 静态资源 |-- components // 组件模块 |-- scripts // 辅助脚本模块 |-- services // 服务相关 |-- typings // 类型声明 |-- examples // 演示实例 |-- .cz.json // commitizen配置 |-- .editorconfig // 编辑器配置 |-- .eslintignore // eslint忽略配置 |-- .eslintrc.js // eslint配置 |-- .gitignore // git忽略配置 |-- .prettierrc // prettier配置 |-- .versionrc.js // standard-version配置 |-- babel.config.js // babel配置 |-- jsconfig.json // javascript项目配置 |-- package.json // package.json |-- README.md // README.md `-- vue.config.js // vue配置 ``` ## 🎉 项目初始化 * 进入项目根目录执行 **npm install** (若安装了yarn可以使用 **yarn** ) ## 📦 编译打包 * 开发 --> 在项目根目录执行 **npm run dev** (若安装了 **yarn** 可以使用 **yarn dev** ) * 打包 --> 在项目根目录执行 **npm run build** (若安装了 **yarn** 可以使用 **yarn build** ) * lint检测 --> 在项目根目录执行 **npm run lint** (若安装了 **yarn** 可以使用 **yarn lint** ) * 代码提交 --> 在项目根目录执行 **npm run commit** (若安装了 **yarn** 可以使用 **yarn commit** ) * 版本管理 --> 在项目根目录执行 **npm run release** (若安装了 **yarn** 可以使用 **yarn release** )