Skip to content

Instantly share code, notes, and snippets.

@peihsinsu
Created September 25, 2014 13:28
Show Gist options
  • Save peihsinsu/378b9b8a35ec4ada5894 to your computer and use it in GitHub Desktop.
Save peihsinsu/378b9b8a35ec4ada5894 to your computer and use it in GitHub Desktop.
Get CPU info restful
var http = require('http');
var os = require('os');
http.createServer(function(req, res){
res.writeHead(200, {'Content-Type':'application/json'});
res.end(JSON.stringify(os.cpus()));
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment