标签:
试用了下VSC, 感觉比sublime还不错, 但是苦恼的时候编写node.js的时候没有任何的提示。
原来很简单, 例如一个最简单的http.js:
var http = require(‘http‘);
var port = process.env.port || 1337;
http.createServer(function(req,res){
res.writeHead(200, {‘Content-Type‘: ‘text/plain‘});
res.end(‘Hello node.js\n‘);
}).listen(port, ‘127.0.0.1‘, function(){
console.log(‘Server running at http://127.0.0.1:1337‘);
});
这个时候提示process (cannot find name ‘process‘), 鼠标点选process, 有个黄色tips, 然后选中Add /// <reference path="../../typings/node/node.d.ts"/>即可
关于Visual Studio Code的Node.js提示
标签:
原文地址:http://www.cnblogs.com/yangshizhimei/p/4695185.html