mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
5 lines
164 B
JavaScript
5 lines
164 B
JavaScript
require('http').createServer(function (req, res) {
|
|
res.writeHead(200, {'content-type': 'application/json'})
|
|
res.end(JSON.stringify({ok: true}))
|
|
}).listen(1337)
|