Autocomplete NodeJS is a package made for the Pulsar Text Editor.
Which provides autocompletions for the built in functions, constants, and exports of modules that come with NodeJS.
- Only appears when you actually import the relevant module!
- e.g.
require("node:os")
- e.g.
require('os')
- e.g.
- Provides Snippets where applicable
os.getPriority(pid)
os.setPriority(pid, optionalPriority)
os.userInfo({ encoding: 'utf8' })
- Provides what version of NodeJS certain APIs were added to modules
- Provides links to Node's Documentation on nearly every suggestion under
More