Quantcast
Channel: Node.js Tools for Visual Studio
Viewing all articles
Browse latest Browse all 4630

Created Issue: No completions for `cheerio` [1208]

$
0
0
Using the introduction code:
```js
var cheerio = require('cheerio');
var $ = cheerio.load('<h2 class="title">Hello world</h2>');

$('h2.title').text('Hello there!');
$('h2').addClass('welcome');

$.html();
//=> <h2 class="title welcome">Hello there!</h2>
```
No completions for members of `cheerio`, and of course none for `$`. Hovering over `cheerio` does give info, and Find All References shows the definition of the module, so it's just the members.

Viewing all articles
Browse latest Browse all 4630