微信小程序版的cnode,基于京东凹凸实验室的Taro开发
项目地址:(git clone
)
git clone https://github.com/aushion/wx-cnode.git
通过npm
安装本地服务第三方依赖模块(需要已安装Node.js)
npm install
启动服务
npm run dev:weapp
发布代码
npm run build
. ├── README.md ├── config // 项目不同环境的配置 ├── dist // 项目build目录 ├── package.json // 项目配置文件 ├── src // 生产目录 │ ├── static // css js 和图片资源 │ ├── components // 各种组件 │ ├── pages // 各种页面 │ └── app.js // 入口页js │ └── app.styl // 入口页样式 │ └── index.html // 入口页