4
0
mirror of https://github.com/apache/cordova-android.git synced 2025-05-13 14:51:40 +08:00
2016-02-24 09:50:07 -08:00

5 lines
163 B
JavaScript

require("http").createServer(function (req, res) {
res.writeHead(200, {"content-type":"application/json"})
res.end(JSON.stringify({ok: true}))
}).listen(1337)