2013年2月4日 星期一

Chromium 啟動全螢幕

on Linux FC17 chromium --kiosk http://127.0.0.1:3000

ExpressJS 印出JSON範例

 
msg = JSON.stringify(json);
res.writeHead(200, {
    "Content-Type": "application/json;",
    "Content-Length": msg.length
});
res.end(msg);