请稍侯

JsonServer,lowdb,hotel为开发者打造轻服务器

27 June 2016

JsonServer,lowdb,hotel为开发者打造轻服务器

JsonServer模拟Api服务端

JsonServer:https://github.com/typicode/json-server

本文示例:http://wodedata.com:3000

为api生成模拟数据

模拟数据生成

js写的轻量级数据库lowdb

lowdb:https://github.com/typicode/lowdb

hotel一个非常好用的Server管理器

hotel:https://github.com/typicode/hotel

安装全局作用域的module

添加json-server模块:npm install -g json-server 添加faker、lodash模块:npm install -g faker lodash

Ubuntu在.bashrc中添加NODE_PATH环境变量:export NODE_PATH=/usr/lib/node_modules Mac OS在profile中添加NODE_PATH环境变量:export NODE_PATH=/usr/local/lib/node_modules

Hotel相关操作

npm install -g hotel

hotel add 'jekyll serve --port 4000' --name luowei.github.io -p 4000

hotel add 'python -m SimpleHTTPServer 8000' --name websites -p 8000

hotel add 'php -S 127.0.0.1:5000' --name 'php sites' -p 5000

hotel add 'hexo server' --name 'hexo site' -p 4000

hotel add 'ember server' --name 'ember site' -p 4200

hotel add 'nginx' --name 'nginx server' -p 8000