Skip to content

confused-Techie/autocomplete-nodejs

Repository files navigation

autocomplete-nodejs

autocomplete-nodejs

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.

Autocompletions Example

Features

  • Only appears when you actually import the relevant module!
    • e.g. require("node:os")
    • e.g. require('os')
  • 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

Currently Supported NodeJS Modules