Closed Issue: Anonymous functions should acquire a name in a proper context...
Consider:```function Foo() { this.f = function () { }}var foo = new Foo();foo.f(```The completion tip that shows at the last `(` says `<anonymous function>()`. While it technically is an anon...
View ArticleEdited Issue: Anonymous functions should acquire a name in a proper context...
Consider:```function Foo() { this.f = function () { }}var foo = new Foo();foo.f(```The completion tip that shows at the last `(` says `<anonymous function>()`. While it technically is an anon...
View ArticleClosed Issue: Members of "express" all have unknown types [1085]
Just create a new Express web app project and hover over express members. E.g. in this code:```var express = require('express');...var app =...
View ArticleEdited Issue: Members of "express" all have unknown types [1085]
Just create a new Express web app project and hover over express members. E.g. in this code:```var express = require('express');...var app =...
View ArticleClosed Feature: Intellisense doesn't work on callback from builtin function...
Create new Node.js project and we gets simple code:``` JavaScriptvar http = require('http');var port = process.env.port || 1337; http.createServer(function (req, res) { res.writeHead(200, {...
View ArticleEdited Feature: Intellisense doesn't work on callback from builtin function...
Create new Node.js project and we gets simple code:``` JavaScriptvar http = require('http');var port = process.env.port || 1337; http.createServer(function (req, res) { res.writeHead(200, {...
View ArticleClosed Issue: "path" module functions don't have proper return types [1082]
E.g. try:```var path = require('path');path.join('a', 'b').```I expect to see members of String after the last dot, but there's nothing.Comments: Verified in build 21003.02. Fixed. Closing.
View ArticleEdited Issue: "path" module functions don't have proper return types [1082]
E.g. try:```var path = require('path');path.join('a', 'b').```I expect to see members of String after the last dot, but there's nothing.
View ArticleCreated Unassigned: Unable to parse package.json from your project. [1423]
When adding grunt and grunt-bowercopy as devDependencies to your project, it seems that the npm management of Node.js Tools gets in trouble _after_ (a) these dependencies are installed and (b) visual...
View ArticleEdited Unassigned: Unable to parse package.json from your project. [1423]
When adding grunt and grunt-bowercopy as devDependencies to your project, it seems that the npm management of Node.js Tools gets in trouble _after_ (a) these dependencies are installed and (b) visual...
View ArticleEdited Unassigned: Unable to parse package.json from your project. [1423]
When adding grunt and grunt-bowercopy as devDependencies to your project, it seems that the npm management of Node.js Tools gets in trouble _after_ (a) these dependencies are installed and (b) visual...
View ArticleNew Post: NTVS and git
@EdvinV, are you using Visual Studio 2013 Update 3? This is a bug in the VS Git plugin. See http://stackoverflow.com/questions/19085881
View ArticleEdited Issue: `return` dedents too much in a nested single-line if [1198]
```jsif (true) if (true) if (true) return;```After pressing Enter at the end of last line, the cursor is dedented by two levels (i.e. matching the second `if`). I would expect it to be dedented by one...
View ArticleCommented Issue: stuck in 'install New npm Packages" loop [1404]
VS2013 Premium. I attempt to install the NPM package by right clicking NPM in my project. only option not greyed out is install new npm packages. this goes through the download process twice then just...
View ArticleEdited Issue: Missing some auto complete for package Chalk [1197]
Config:VS2013 with Update3 RC.Win8.1Issue:We are missing the colors (eg. Red, Green) in auto complete for package Chalk.
View ArticleCommented Issue: Missing some auto complete for package Chalk [1197]
Config:VS2013 with Update3 RC.Win8.1Issue:We are missing the colors (eg. Red, Green) in auto complete for package Chalk. Comments: In build 21003.02, we still don't get the colors. ``` var chalk =...
View ArticleCommented Issue: stuck in 'install New npm Packages" loop [1404]
VS2013 Premium. I attempt to install the NPM package by right clicking NPM in my project. only option not greyed out is install new npm packages. this goes through the download process twice then just...
View ArticleCommented Issue: npm package list empty [1308]
I've just upgraded to Beta 2 but I can't seem to install new npm packages as the package list is always empty. If I refresh the list it just takes a long time and still comes back with nothing.I can...
View ArticleClosed Issue: Typescript build options are not respected [1410]
The Typescript Build option "Keep comments in JavaScript output" is not respected if one unchecks the option. The comments are still saved in the JS output file. 1. Create a node.js typescript...
View Article