Vue版 cnodejs.org社区 WebApp 线上访问
# clone repo
git clone git@github.com:ihanyang/cnode-vue.git
# install dependencies
npm install
# build for production
npm run build
├── dist // 输出目录
├── node_modules // Node.js 模块
├── src // 源码
│ ├── components // 组件目录
│ ├── css // css 目录
│ ├── images // 图片目录
│ ├── router // 路由
│ ├── utils // 工具目录
│ ├── font // icon 目录
│ ├── views // 视图
│ ├── vuex // vuex 目录
│ ├── api.js // api.js
│ ├── app.js // 项目入口
│ ├── app.vue // 根组件
├── static // 项目截图
├── .babelrc // babel 配置文件
├── .gitignore // git 忽略文件
├── index.tpl // 项目模板
├── package.json // 项目配置文件
├── README.md // 项目说明
└── server.js // Node.js 服务
└── webpack.config.babel.js // webpack 配置文件