How to get Node.js support library in Sublimt Text 3?

I tried many ST3 plugins, but many of them are poorly documented or have fairly outdated documentation. Also, very quickly, I find that Sublime plugins can accidentally crash among themselves ...

So, I got a few common ones:

  • SublimeCodeIntel
  • SublimeLinter - JShint
  • JavaScriptNext

Sublime Coding Interface enter image description here

But.

I use WebStorm 9 , which can automatically indicate (with autocomplete) when running JavaScript.

Is there a way to get Sublime Text 3 to automatically complete Node.js, in particular:

WebStorm Encoding Interface Webstorm interface

+5
source share
1 answer

I wrote Javascript in Sublime Text. But I think my experience still applies to ST2 / 3. The plugins you use are probably too weak to provide you with a true semantic end sentence. JShint is a transfusion tool. JSNext simply provides the next version of JavaScript, namely es6, syntax, and keywords. So your suggestions are, after all, a list of text that appears either in your own files or in JS syntax.

Fortunately, there are ST plugins that give you an IDE as smart completion. TernJS is one of the best, I think, and ST port plugin .

enter image description here

Even in an old text editor, you can get a terrific finish if a decent plugin is installed.

0
source

Source: https://habr.com/ru/post/1215343/


All Articles