Home

💻Must-Have VS Code Extensions for JavaScript Developers

These are the best and most popular Visual Studio Code extensions for software engineers developing in JavaScript or TypeScript. If a VS Code extension you love is not on the list, please add it to help other devs find it.

Sort by
  1. 4
    Image for GitHub Copilot

    AI-generated code autocompletions. Start typing and Copilot will generate code suggestions based on your input. Very often when you start typing the name of your function, it just autocompletes the entire function for you. It's hard to overstate how great this extension is. Does anyone even code without Copilot anymore?

  2. 4
    Image for Prettier

    Prettier is an opinionated code formatter that enforces strict formatting rules to keep your code consistent. This extension allows you to run prettier on save, which is really handy.

  3. 2
    Image for DotENV

    This simple extension provides syntax highlighting for .env files.

  4. 1
    Image for GitLens

    There is so much to this extension but the most basic feature is visualizing code authorship. It shows you who made the last change to your current line, the commit message, and when the change was made. Other features include visualizing file history, navigating through git history, rebase editor etc.

  5. 1
    Image for CodeMetrics

    CodeMetrics shows you the cognitive complexity of your JavaScript and TypeScript code. If the complexity is too high, you know you need to refactor or simplify.

  6. 1
    Image for GraphQL: Syntax Highlighting

    Syntax highlighting for .gql, .graphql and .graphqls files. It also works with inline GraphQL in JavaScript, TypeScript, jsx, tsx, Vue, Svelte, PHP, ReasonML, Python, Markdown, Scala and Ruby.

  7. 0
    Image for DBCode

    Connect, query and manage your databases without leaving Visual Studio Code. Supports Postgres, MySQL, MariaDB, SQL Server, MongoDB and more...

Frequently Asked Questions

Related Lists

feedback