# smallGame **Repository Path**: xdz2333/smallGame ## Basic Information - **Project Name**: smallGame - **Description**: 微信小游戏 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-02-13 - **Last Updated**: 2022-01-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Steam Game ### 部署和编译 #####安装npm依赖环境 ```bash npm install # 开发环境 npm install --production # 生成环境 ``` ##### 服务器生成环境运行 nginx 配置 ```bash location /{ try_files $uri $uri/ /index.html; } ``` ##### AoT静态编译 如果应用正处于实时编译,需要先关闭实时编译 ```bash npm run aot gulp ``` ####### 需要在本地服务器环境运行 访问 http://localhost/index.html ##### JiT即时编译 ```bash npm start ``` ####### 需要在本地node环境运行 访问 http://localhost:3000