Edited Issue: No completions with new keyword [1203]
Using this package:https://www.npmjs.org/package/glob```var Glob = require("glob").Globvar mg = new Glob(pattern, options, cb)```You won't get completions when you type `new Glob(` but you see...
View ArticleEdited Issue: text explorer not discovering tests [1202]
vs2012 win7 32-bit, neither mocha nor exportrunner (even after TestFramework is set)
View ArticleEdited Issue: Test Framework not being set after adding unit test file [1205]
should be set automatically(vs2012 win7 32-bit)
View ArticleCreated Issue: Missing completions on http-proxy [1206]
https://www.npmjs.org/package/http-proxy`web` is missing from completions:```var httpProxy = require('http-proxy');var proxy = httpProxy.createProxyServer('');proxy.web```
View ArticleCreated Issue: winston.info is missing in the intellisense list from package...
Config:Win8.1 w/ latest updatesVS2013 w/ Update3 RCIssue:Winston.info is miss from the intellisense list.
View ArticleCreated Issue: No completions for `cheerio` [1208]
Using the introduction code:```jsvar cheerio = require('cheerio');var $ = cheerio.load('<h2 class="title">Hello world</h2>');$('h2.title').text('Hello...
View ArticleCommented Issue: Funky dedentation [1194]
Type the following code. Every line will be dedented to the left after hitting the last ')'.var request = require('request');request('http://www.google.com', function (error, response, body) {if...
View ArticleCreated Issue: Missing completions in log4js [1209]
https://www.npmjs.org/package/log4js```var log4js = require('log4js');var logger = log4js.getLogger('cheese');logger.debug('hello world');````debug` is missing from completions. `Debug` shows up in...
View ArticleCommented Issue: Funky dedentation [1194]
Type the following code. Every line will be dedented to the left after hitting the last ')'.var request = require('request');request('http://www.google.com', function (error, response, body) {if...
View ArticleEdited Issue: Missing completions in log4js [1209]
https://www.npmjs.org/package/log4js```var log4js = require('log4js');var logger = log4js.getLogger('cheese');logger.debug('hello world');````debug` is missing from completions. `Debug` shows up in...
View ArticleEdited Issue: Missing completions in log4js [1209]
https://www.npmjs.org/package/log4js```var log4js = require('log4js');var logger = log4js.getLogger('cheese');logger.debug('hello world');````debug` is missing from completions. `Debug` shows up in...
View ArticleCreated Issue: Backbone.js missing methods [1210]
Using models:```jsvar _ = require('lodash');var Backbone = require('backbone');var Sidebar = Backbone.Model.extend({ promptColor: function () { var cssColor = prompt("Please enter a CSS color:");...
View ArticleCreated Issue: no completions for underscore.string [1211]
https://www.npmjs.org/package/underscore.stringAccording to the docs, we should be able to do this:```var _ = require('underscore');_.str = require('underscore.string');_.str.capitalize('hello');```but...
View ArticleEdited Issue: Bad javascript syntax triggers intellisense in the REPL window...
In the REPL window, type the following syntax:npm install express@This triggers the instelliSense. See the attached image.
View ArticleCommented Issue: Bad javascript syntax triggers intellisense in the REPL...
In the REPL window, type the following syntax:npm install express@This triggers the instelliSense. See the attached image.Comments: Another issue. It's probably nit-picky. The blow syntax still...
View ArticleEdited Issue: Test Framework not being set after adding unit test file [1205]
should be set automatically(vs2012 win7 32-bit)
View ArticleEdited Issue: text explorer not discovering tests [1202]
vs2012 win7 32-bit, neither mocha nor exportrunner (even after TestFramework is set)
View ArticleEdited Issue: intellisense in non-terminated function missing parameters [1200]
```console.log(function(error, response) { er```This should display "error" but it does not. workaround: complete the scope and all will work fine.
View ArticleCreated Issue: Incomplete intellisense list for package "less" [1213]
1. Install package 'less'2. type the following code:```var less = require('less'); less.render('.class {width: (1+1)}', function (e, css) { console.log(css);});var parser = new...
View ArticleCreated Issue: Incomplete intellisense list for package 'nconf' [1214]
1. install package 'nconf'2. Type in the following code:```var nconf = require('nconf');nconf.argv() .env() .file( { file: 'path/to/config.json' });nconf.set();nconf.save();```These are all missing...
View Article