码迷,mamicode.com
首页 > Web开发 > 详细

关于Visual Studio Code的Node.js提示

时间:2015-08-02 11:37:16      阅读:697      评论:0      收藏:0      [点我收藏+]

标签:

试用了下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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!