nodejs
小羊ccc
https://github.com/billmi
80后码农,呵呵.谢谢大家支持
展开
-
Vscode插件(自用)
Vscode插件(自用)原创 2024-11-17 01:28:09 · 99 阅读 · 0 评论 -
pm2命令
#需要支持pm2 install pm2-logrotatepm2 set pm2-logrotate:retain 7 #不动pm2 set pm2-logrotate:compress false #可以设置truepm2 set pm2-logrotate:dateFormat YYYY-MM-DD_HH-mm-ss #格式 pm2 set pm2-logrotate:max_size 10M #大小pm2 set pm2-logrotate:rotateInterval转载 2021-07-03 18:17:23 · 182 阅读 · 0 评论 -
Promise与Axios结合使用方法
html内使用 var p = new Promise(function(resolve, reject){ setTimeout(function(){ var flag = false; if(flag) { // 正常 resolve('hello'); }else{ ...翻译 2020-04-29 03:35:29 · 1986 阅读 · 0 评论 -
ubuntu安装nodejs
方法1:curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -sudo apt-get install -y nodejs如果安装nodejs 9.x版本curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -sudo apt-get install -y ...转载 2018-06-06 10:44:41 · 838 阅读 · 0 评论 -
egg
这个框架服务组件高可用,构件化.摈弃传统包化管理...地址:https://github.com/billmi/my-egg# 安装方法yarn installcnpm i#跑起来 npm run dev注意 : 端口没使用默认7001,我已经改成3000了~!!!后期:结构还能继续拆,验证器添加,日志管理查看【mongo】集成,也许有其他博主做了...以前就是使...原创 2018-12-03 01:37:29 · 367 阅读 · 0 评论 -
pm2配置保留
pm2配置:{ "apps": [ { "name": "Oauth", "script": "rpcServ.exe -c D:/GoWorks/src/xxxxxx/xxxxxxx/configs/config_demo1.json", "cwd": "./", "node_args": "", "interprete...转载 2019-04-15 14:10:42 · 417 阅读 · 0 评论