mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-07 23:03:11 +08:00
5 lines
163 B
JavaScript
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)
|