Node.js 如何使用VisualStudio将NODEJS服务器链接到meteor中创建的另一个文件夹

Node.js 如何使用VisualStudio将NODEJS服务器链接到meteor中创建的另一个文件夹,node.js,visual-studio,meteor,Node.js,Visual Studio,Meteor,我最近从meteor入门学习了一个教程,我正在Visual Studio中使用NodeJS Web应用程序,然后我在名为simple todos的包中使用cmd(meteor create simple ToDo)命令创建了一个meteor(在教程中),我想要的是当我在Visual Studio 2015上点击F5时,它将启动“simple to do”而不是“Hello World”是他们配置服务器的一种方式。js似乎无法在meteor上找到配置 这是我的默认server.js var ht

我最近从meteor入门学习了一个教程,我正在Visual Studio中使用NodeJS Web应用程序,然后我在名为simple todos的包中使用cmd(meteor create simple ToDo)命令创建了一个meteor(在教程中),我想要的是当我在Visual Studio 2015上点击F5时,它将启动“simple to do”而不是“Hello World”是他们配置服务器的一种方式。js似乎无法在meteor上找到配置

这是我的默认server.js

 var http = require('http');
 var port = process.env.port || 3000;
 http.createServer(function (req, res) {
     res.writeHead(200, { 'Content-Type': 'text/plain' });
     res.end('Hello World\n');
 }).listen(port);

你想调试visual studio中的meteor应用程序吗?是的,确实可能吗?不。。。。不是从VisualStudio