var http=require('http');
var server=new http.Server(function(req,res){
console.log(req.method,req.url)
});
server.listen(1337,'127.0.0.1');
I am very new at nodejs, use VS Code and I like intellisense on it. But I do not know how to enable intellisense on nodejs modules?
For example: if I type server.
I can not see any functions and properties of this object.
How to enable it?