I am new at Node, I have this simple Node.js server works on windows
Server Code
var ws = require("websocket-server");
var server = ws.createServer();
server.addListener("connection", function(client){
console.log("new connection");
client.send("aaaaaa");
client.addListener("message", function(msg){
console.log(msg);
});
});
server.listen(8080);
I just want to call windows API insted of line
console.log(msg);
is there any way to do this without using external library
any ideas?