/
githubmirror
/
pm2
Обзор
Документация
Войти
/
githubmirror
/
pm2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.1.1
examples/misc-examples/null.js
14 строк
372 B
Unitech
Update README.md and fully restructure tests
24 янв 2018, 14:43
24 янв 2018, 14:43
dcd190b
Код
Авторство
О чём код?
var pmx = require('pmx'); var http = require('http'); http.createServer(function(req, res) { res.end('Thanks'); }).listen(5445); pmx.action('db:test', {comment: 'Simply test'}, function(reply) { reply({test: "WOWOWOWOWOW", length: 12}); }); pmx.action('throw', {comment: 'Simply test'}, function(reply) { throw { success : 'false', length: 12 }; });