web的server端代码,负责web前端和采集的消息转发以及帮web前端访问数据库。
zengminguo 687fbfcbde add dependance packages | il y a 2 ans | |
---|---|---|
.vscode | il y a 2 ans | |
fonts | il y a 2 ans | |
src | il y a 2 ans | |
.babelrc | il y a 2 ans | |
.gitignore | il y a 2 ans | |
LICENSE | il y a 2 ans | |
README.md | il y a 2 ans | |
app.json | il y a 2 ans | |
app5.json | il y a 2 ans | |
drain | il y a 2 ans | |
dump.rdb | il y a 2 ans | |
index-pro.js | il y a 2 ans | |
index-pro5.js | il y a 2 ans | |
index.js | il y a 2 ans | |
jsconfig.json | il y a 2 ans | |
package-lock.json | il y a 2 ans | |
package.json | il y a 2 ans | |
start.sh | il y a 2 ans |
服务器。
如果已安装,请跳过本步。
node -v
验证是否安装正确;如果已安装,请直接初始化DB。
create database yaloc
mysql -uroot -p yaloc < yaloc.sql
mkdir project-dir && cd project-dir
,创建并进入项目目录;git clone http://xxx/webapp/loc-server.git .
,下载代码库到本地;npm install
, 安装相关的依赖;npm start
, 启动开发模式;讨论:https://news.ycombinator.com/item?id=11574705
参见:https://benchmarking.nodejs.org/
参见:https://github.com/rtsao/babel-preset-es2015-node
注意:这里 babel-plugin-transform-es2015-modules-commonjs
依赖 babel-plugin-transform-strict-mode
。在安装前者时,会自动安装后者。