Updated Wiki: Projects
ProjectsNode.js Tools allows you to create projects using the Visual Studio project system. Project files (.njsproj) reference all the source and content files associated with your project, showing...
View ArticleUpdated Wiki: Npm
npmLooking to avoid not-invented-here syndrome? npm allows you to install and manage packages for use in your Node.js apps (among other things). We'll assume you're familiar with basic npm...
View ArticleUpdated Wiki: Editor
The EditorWhen developing, most of your time is spent in the text editor. Node.js Tools provides a rich editor with functionality to help you be more productive, such as syntax highlighting, identifier...
View ArticleUpdated Wiki: Profiling
ProfilingNode.js Tools for Visual Studio takes advantage of V8 Profiling API's as well Visual Studio's Reporting features to give you a sense of where your program is spending its time. Here's a short...
View ArticleUpdated Wiki: AdvancedDebugging
Advanced DebuggingNode.js Tools for Visual Studio (NTVS) include advanced debugging features for debugging Node.js applications, like advanced breakpoints, and remote debugging of Node.js processes...
View ArticleUpdated Wiki: AzureWebSiteWebDeploy
Publish to Azure Web Site using Web DeployThis section describes how to use the Publish command to deploy your Node.js project to a Windows Azure Web Site.To use this functionality, make sure to create...
View ArticleCommented Issue: NTVS Beta 2 Crashing on Solution Start-up Now [1305]
Not sure what to report here, but NTVS Beta 2 is now crashing again like the it was two (2) releases ago. Before I had to delete the "obj" and "npm_packages" folder to avoid the crash whenever I opened...
View ArticleEdited Issue: Completion does not understand interspersed multiline comments...
```"string"/*comments*/.```The completion at dot shows global variables rather than members of String. Removing the comment and retyping the dot will show the proper list.This seems to be breaking...
View ArticleEdited Issue: Quick Info for expressions can be too long [1143]
```function f(g) { return ""; }f(function () { }).length```Hover over `length`. The quick tip for it will include the entire text of expression, including the body of the anonymous function. This is...
View ArticleEdited Issue: No signature help when calling a lambda [1140]
Start typing this:```(function (x) { console.log(x); })(```I expect a signature help coming up for the function, showing parameter `x`, but there's nothing.
View ArticleEdited Issue: Adding an existing d.ts file should set build action...
If you install d.ts files using external package manager, such as TSD, you'll get the files on disk but they aren't part of project.Include in ProjectResult: Files added with Build Action:...
View ArticleEdited Unassigned: \r\nserver.on(" ... [1138]
we shouldnt show the \r\n when displaying help text
View ArticleCommented Issue: Keep indentation for comments [1145]
I don't how to very well describe this but here is an example:Line1: /**Line2: *Line3: *Currently line 2 starts from column 1 of the line. I was expecting to see it keeping the same indentation as Line...
View ArticleClosed Issue: Keep indentation for comments [1145]
I don't how to very well describe this but here is an example:Line1: /**Line2: *Line3: *Currently line 2 starts from column 1 of the line. I was expecting to see it keeping the same indentation as Line...
View ArticleEdited Issue: Keep indentation for comments [1145]
I don't how to very well describe this but here is an example:Line1: /**Line2: *Line3: *Currently line 2 starts from column 1 of the line. I was expecting to see it keeping the same indentation as Line...
View ArticleClosed Issue: Code analysis level persisted even after canceling out of the...
The options dialog to specify the code analysis level persists the user selection even if s/he canceled out of the dialog. We shouldn't however.
View ArticleEdited Issue: Code analysis level persisted even after canceling out of the...
The options dialog to specify the code analysis level persists the user selection even if s/he canceled out of the dialog. We shouldn't however.
View ArticleEdited Feature: npm needs ctrl sequence [1131]
would be great to have a short cut key...
View ArticleEdited Issue: Mocha, right click on test runs all tests in suite [1130]
Right click on test method, select run test. Only the 1 test should be run, we run all tests in the suite.
View ArticleEdited Issue: Mocha squiggles on describe [1129]
We need to better handle the syntax so that we don't squiggle.
View Article