├── .gitignore ├── LICENSE ├── README.md ├── config.example.yml ├── index.js ├── package.json ├── template.md └── test └── throw.js /.gitignore: -------------------------------------------------------------------------------- 1 | config.yml 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyuka/pm2-notify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyuka/pm2-notify/HEAD/README.md -------------------------------------------------------------------------------- /config.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyuka/pm2-notify/HEAD/config.example.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyuka/pm2-notify/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyuka/pm2-notify/HEAD/package.json -------------------------------------------------------------------------------- /template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyuka/pm2-notify/HEAD/template.md -------------------------------------------------------------------------------- /test/throw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyuka/pm2-notify/HEAD/test/throw.js --------------------------------------------------------------------------------