New Post: Error 10054. Debugging a locally running node.exe process with VS
I tried that, VS attaches to the process but again I don't hit any of my breakpoints. This is what I see in the command prompt: node: node.exe scriptToDebug: bin\www passThroughArgs: localClientPort:...
View ArticleNew Post: How do you reference Node JS projects within a solution?
When you say "reference", what exactly do you expect it to do? In case of C#, a project has a single assembly as its output, and it is that assembly that is referenced by the other project. For Node...
View ArticleNew Post: How do you reference Node JS projects within a solution?
What I meant was a way to reference modules from Project_1 in Project_2. The doc here https://nodejstools.codeplex.com/wikipage?title=Projects says that "Solutions can contain multiple projects,...
View ArticleNew Post: How do you reference Node JS projects within a solution?
Modified method 1, but VS does not automatically copy the module for you so you have to npm install it in the cmd.dependencies : { "Project_1" : "../Project_1" } ... var module = require("Project_1");
View ArticleNew Post: How do you reference Node JS projects within a solution?
Any MSBuild project can reference any other MSBuild project - this establishes a build dependency (if you build Project_2, it will automatically build Project_1 first). It does not establish a package...
View ArticleNew Post: How do you reference Node JS projects within a solution?
BTW, one thing that NTVS could do in this case is automatically npm install the referenced project as if it were a module. Feel free to file a feature for this in the tracker. In the meantime, note...
View ArticleNew Post: How do you reference Node JS projects within a solution?
pminaev wrote: BTW, one thing that NTVS could do in this case is automatically npm install the referenced project as if it were a module. Feel free to file a feature for this in the tracker. In the...
View ArticleNew Post: How do you reference Node JS projects within a solution?
One more thing - it is has to be npm install -f
View ArticleCreated Feature: How do you reference Node JS projects within a solution? [1580]
(from https://nodejstools.codeplex.com/discussions/572866)>**pminaev wrote:**>> BTW, one thing that NTVS could do in this case is automatically `npm install` the referenced project as if it...
View ArticleNew Post: How do you reference Node JS projects within a solution?
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleEdited Feature: Project references should be automatically npm installed [1580]
(from https://nodejstools.codeplex.com/discussions/572866)>**pminaev wrote:**>> BTW, one thing that NTVS could do in this case is automatically `npm install` the referenced project as if it...
View ArticleReviewed: 1.0 Beta 3 (Nov 23, 2014)
Rated 5 Stars (out of 5) - great,we are building http://vcljs.com based on ntvs and typescript and thr results are excellent
View ArticleNew Post: NTVS and Express 4
I had a project with Express 4 and then imported it to VS. Then in project properties I set the DEBUG environment variable and pass bin/www as node parameters, but even if the app starts, the debugger...
View ArticleNew Post: NTVS and Express 4
Can you describe what "debugger don't work" manifests as, in detail? Also, make sure that you're doing Project -> Start with Debugging.
View ArticleSource code checked in, #83e0615160cabae5f01238e9c119c5feff76f41b
npm fixes #1575 npm commands in repl or ui often fail to exit - sometimes npm process was dying before we could get output. Use WaitHandle instead (this affected both repl and ui) - npm logic...
View ArticleReleased: NTVS 1.0 RC (Nov 24, 2014)
We are pleased to announce the release of Node.js Tools 1.0 RC for Visual Studio. Node.js Tools for Visual Studio (NTVS) is a free, open-source plug-in that turns Visual Studio into a Node.js...
View ArticleUpdated Release: NTVS 1.0 RC (Nov 24, 2014)
We are pleased to announce the release of Node.js Tools 1.0 RC for Visual Studio.Node.js Tools for Visual Studio (NTVS) is a free, open-source plug-in that turns Visual Studio into a Node.js Integrated...
View ArticleEdited Feature: TypeScript: Add menu item should have more options [744]
Hi, at present the right-click >> _Add item_ menu item for Node JS TypeScript projects have the following options:* New item* Existing item* New folder* Existing folderOrdinary TypeScript...
View ArticleEdited Feature: TypeScript: Add menu item should have more options [744]
Hi, at present the right-click >> _Add item_ menu item for Node JS TypeScript projects have the following options:* New item* Existing item* New folder* Existing folderOrdinary TypeScript...
View ArticleEdited Feature: Document usage of Microsoft.NodejsTools.NodeLogConverter.exe...
We should add a section to our profiling documentation to mention how you can take an existing v8 log and import it in VS, with the help of Microsoft.NodejsTools.NodeLogConverter.exe.Proposed by a user...
View Article