ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

PM2-Snippets

riyadhalnur 全部

Sublime Text的PM2(进程管理器)代码片段

详细信息

  • 1.0.0
  • github.com
  • github.com
  • 9年前
  • 57分钟前
  • 9年前

安装次数

  • 总计 269
  • Win 171
  • Mac 56
  • Linux 42
2021年8月6日 2021年8月5日 2021年8月4日 2021年8月3日 2021年8月2日 2021年8月1日 2021年7月31日 2021年7月30日 2021年7月29日 2021年7月28日 2021年7月27日 2021年7月26日 2021年7月25日 2021年7月24日 2021年7月23日 2021年7月22日 2021年7月21日 2021年7月20日 2021年7月19日 2021年7月18日 2021年7月17日 2021年7月16日 2021年7月15日 2021年7月14日 2021年7月13日 2021年7月12日 2021年7月11日 2021年7月10日 2021年7月9日 2021年7月8日 2021年7月7日 2021年7月6日 2021年7月5日 2021年7月4日 2021年7月3日 2021年7月2日 2021年7月1日 2021年6月30日 2021年6月29日 2021年6月28日 2021年6月27日 2021年6月26日 2021年6月25日 2021年6月24日 2021年6月23日
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

readme.md

源代码
raw.githubusercontent.com

PM2-Snippets for Sublime Text 2/3

Sublime Text的PM2(进程管理器)代码片段

要使用代码片段,只需输入短代码并按 Tab 键(或您设置的完成键)即可使用代码片段。

包括以下所有代码片段。$1、$2等显示在每次您在代码片段中按下Tab键时光标出现的位置。

您可以根据想象以任何方式更改代码片段。


pm2-json(仅适用于.json文件)

[{
  "script"    : "${1:server.js}",
  "name"      : "${2:node-app}",
  "exec_mode" : "${3:cluster}",
  "instances" : ${4:-1}  // number of CPUs -1
}, {
  "script"    : "${5:worker.js}",
  "name"      : "${6:worker}",
  "exec_mode" : "${7:fork}",
  "watch"     : ${0:true},  // auto restart app on change,
  "env"            : {  // common env variables
    "INTERVAL" : 1000
  },
  "env_production" : {  // Used if --env prod
    "INTERVAL" : 60000
  }
}]

默认短代码为 [{

pm2-js(仅适用于.js文件)

var pm2 = require('pm2');

pm2.connect(function(err) {
  pm2.start('${1:server.js}', { name: '${2:my-app}' }, function(err, proc) {
    if (err) { throw new Error('There was a problem starting your application ' + err); }

    pm2.list(function(err, process_list) {
      if (err) { throw new Error('There was a problem listing your applications ' + err); }
      console.log(process_list);
    });
  });
});

默认短代码为 pm2

Riyad Al Nur在孟加拉国达卡用爱心制作