Edited Issue: Breakpoints are moved away from valid locations [395]
This seems to be happening most often when the breakpoint is inside a lambda, and the lambda expression (not the body, but the function-expression that yields the function object) is not evaluated yet...
View ArticleEdited Issue: Opening code file from Call Stack uses JS language service [394]
When code breaks in a file that is not part of the project, double clicking an entry in the Call Stack window will open the source (which was available, and didn't need to be downloaded).However, the...
View ArticleEdited Issue: Expanding the arguments property of a function object locks up...
While debugging this:```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...
View ArticleCommented Issue: Expanding the arguments property of a function object locks...
While debugging this:```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...
View ArticleEdited Issue: Expanding the arguments property of a function object locks up...
While debugging this:```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...
View ArticleEdited Issue: Arguments duplicated in Locals window when 'arguments' is used...
Code snippet:```function foo(x, y) { arguments; return x + y;}foo(1, 2);```Set breakpoint on "return" and run. Once it breaks, the Locals window shows two separate entries for 'x' (with the same...
View ArticleEdited Issue: Attaching to local node.exe does not work [578]
Steps to repoduce:- Start a node application with --debug- Go to Debug/Attach to Process- Choose Node remote debugging as transport- Enter "localhost:5858" into the qualifier field- A process is shown...
View ArticleCommented Feature: Node.js (V8) debug port configuration in project...
We should add support in project properties for configuring the debug port used to connect the Node.js executable (V8) to the NTVS debugger. This should at least include allowing the specification of a...
View ArticleCommented Feature: Code formatting not working for *.js files when it opened...
Code formatting not working for *.js files when it opened as Project. Here is a messsage:> The key combination (Ctrl+E, Ctrl+D) is bound to command (Format Document) which is not currently...
View ArticleCommented Issue: project fails to load with a NullReferenceException [574]
Project fails to load and throws a NullReferenceException when package.json contains invalid json. Sometimes Visual Studio crashes as well.Comments: I had this issue when I accidently duplicated a...
View ArticleCommented Feature: TypeScript Support [291]
Hey there, I tried so hard trying to use TypeScript, but using nodeJS project doesn't seem to support TypeScript VS builders. I tried modifying the project file:```<PropertyGroup...
View ArticleEdited Feature: Folder nodes do not have "Full Path" property in the...
Folder nodes do not have "Full Path" property in the Properties window
View ArticleCommented Feature: Folder nodes do not have "Full Path" property in the...
Folder nodes do not have "Full Path" property in the Properties windowComments: Added and added new CopyFullPath command
View ArticleEdited Issue: Breakpoints no longer work after file is renamed [460]
Create new node.js console appput a breakpoint on the console.log lineF5result: breakpoint is hitin solution explorer, rename app.js to start.jsF5result: breakpoint is not hit
View ArticleEdited Issue: Typo in debugger error message [626]
When I hit refresh in the debug attach dialog with Node selected in the combo box, I see this message:```---------------------------Error---------------------------Could not attach to Node.js process...
View ArticleEdited Issue: Package manager UI issues at 200% DPI [596]
Steps to reproduce:1. Run at a high DPI (e.g. 200%). This is common for anyone using a high resolution display (such as a Retina MacBook).2. Open the package manager3. Result - see attached...
View ArticleNew Post: TypeScript support?
That's great news. There are many people in the TypeScript community who would be delighted - not to mention it's the top voted work item on NTVS.
View ArticleCreated Issue: NPM commands showing up for all project types [632]
We need to isolate the npm commands to only appear on the NTVS project type```Manage npm Modules...Update npm ModulesUninstall npm Module```
View ArticleCommented Feature: Integrate Grunt.js as a build system [528]
More and more projects use Grunt.js as the build system, it would be nice with an integration, to be able to run grunt tasks directly from Visual Studio.Comments: Also consider integrating the Gulp...
View ArticleCreated Issue: Add an error message if TypeScript is not installed [633]
Notify the user when they try to build that TypeScript is not installed. A link to how to install would be helpful as well.
View Article