Edited Feature: completions for mongoose models [941]
```var mongoose = require('mongoose');var kittySchema = mongoose.Schema({ name: String });var Kitten = mongoose.model('Kitten', kittySchema);var fluffy = new Kitten({ name: 'fluffy'...
View ArticleEdited Issue: No code completion in express handler [150]
Code:```var http = require('http');var port = process.env.port || 1337;var express = require('express');var app = express();app.get('/', function(req, res) {...
View ArticleEdited Feature: Improve definite assignment [1313]
Right now it's terribly broken, we need to get scoping right which will also probably improve perf.
View ArticleEdited Feature: Autocomplete for callbacks [1302]
Given that we are dealing with callbacks constantly in Javascript, it would be nice if the callbacks would autocomplete, certainly in TypeScript as we have type declarations there.When I type the...
View ArticleEdited Feature: Support understanding control flow and where we are in code...
Write code like this```var a = 123;```Now go back and type a. above that line. It will give completions even though a is undefined at this point```a.var a = 123;```We should be aware of where we are in...
View ArticleEdited Feature: Supoprt analyzing native modules (Missing completions for...
https://github.com/mapbox/node-zipfileFrom the example:```var zipfile = require('zipfile');var zf = new zipfile.ZipFile('./test/data/world_merc.zip');```You won't get ZipFile in the completions.Name of...
View ArticleEdited Feature: Squiggle missing modules in require() [1126]
If the argument in a `require()` call is a string literal, and the corresponding module cannot be found, it should get a warning squiggle.
View ArticleCommented Issue: Intellisense not showing all properties of request object...
Hi, I am a new user of nodejs and found the intellisense withing VS amazing to understand node's funtionality without having a book next to me.when i tried to create a simple http server and was trying...
View ArticleEdited Issue: Intellisense not showing all properties of request object [1532]
Hi, I am a new user of nodejs and found the intellisense withing VS amazing to understand node's funtionality without having a book next to me.when i tried to create a simple http server and was trying...
View ArticleCommented Issue: Crash on compare with unmodified [1587]
VS 2013 (Update 4) crashes since the last second release of ntvs, when i want to compare a file with unmodified (Solution Explorer - Right click on a file - Compare with Unmodified).I use git as source...
View ArticleCommented Unassigned: Error reading package.json [1594]
I'm getting the following error when installing packages from npm:> Microsoft.NodejsTools.Npm.PackageJsonException: Error reading package.json at...
View ArticleCommented Unassigned: Can't create the project [1598]
Hello,After installing NTVS for Visual Studio 2013 Ultimate, can't create a project from template.I get "Illegal characters in path." error.I saw that there are people who are complaining about it but...
View ArticleEdited Unassigned: Ability to specify node and npm paths if already installed...
Hello,I've installed my MEAN stack with bitnami. https://bitnami.com/stack/meanI'd like to be able to specify node and npm location in settings for Node.js tools.Thank you,Timur
View ArticleEdited Unassigned: Can't create the project [1598]
Hello,After installing NTVS for Visual Studio 2013 Ultimate, can't create a project from template.I get "Illegal characters in path." error.I saw that there are people who are complaining about it but...
View ArticleNew Post: No "Node.js Interactive Window" after install?
I just installed VS Community 2013 and then NTVS 1.0 RC. I already had Node.js v0.10.33 installed. After the install I am doing the "Let's make sure everything installed OK" steps but I do not see the...
View ArticleCommented Unassigned: Error reading package.json [1594]
I'm getting the following error when installing packages from npm:> Microsoft.NodejsTools.Npm.PackageJsonException: Error reading package.json at...
View ArticleEdited Issue: Item Template icons don't like the dark theme [825]
See image
View ArticleCommented Issue: Item Template icons don't like the dark theme [825]
See imageComments: This should be fixed in the next build.
View ArticleNew Post: No "Node.js Interactive Window" after install?
OK, well, I did some playing about with VS 2013 and NTVS and it seems that this menu option is only available when you have a Node.js solution open. So, not a big issue but could probably update the...
View ArticleEdited Issue: Crash after creating a project - analysis [1556]
```Application: VWDExpress.exeFramework Version: v4.0.30319Description: The process was terminated due to an unhandled exception.Exception Info: System.ArgumentExceptionStack: at...
View Article