部分记录

React.2017-12-25

http://www.ruanyifeng.com/blog/2015/03/react.html
http://www.ruanyifeng.com/blog/2016/09/react-technology-stack.html
http://blog.tamizhvendan.in/blog/2015/11/23/a-beginner-guide-to-setup-react-dot-js-environment-using-babel-6-and-webpack/

Quick start


Nodejs

https://segmentfault.com/q/1010000003937372/a-1020000003939513

node程序可以考虑在服务器上安装forever,然后用forever start your_js_file.js启动,之后可以用forever list查看正在运行的程序,用forever stop可以停止进程。

比较通用的方法是使用nohup命令启动进程,缺点是当程序停止后不会自动重启。

https://segmentfault.com/q/1010000004455598

http://cnodejs.org/topic/5021c2cff767cc9a51e684e3

http://blog.csdn.net/zhtsuc/article/details/50583849

PM2
https://segmentfault.com/a/1190000008725179
http://blog.csdn.net/luo200618/article/details/52217677

lsof -i :port
kill -9 PID

你可能感兴趣的:(部分记录)