1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-03-20 20:55:18 +02:00

5 lines
164 B
JavaScript
Raw Normal View History

2020-11-05 16:58:23 +00:00
require('http').createServer(function (req, res) {
res.writeHead(200, {'content-type': 'application/json'})
res.end(JSON.stringify({ok: true}))
}).listen(1337)