Useful extensions for VS Code users

Meriem
1 min readFeb 9, 2023

This list of extensions will surely improve your production in VSCode.

1. CodeSnap

Quickly allows you to create screenshots of your code by simply highlighting the respective snippet within your project.

2. Live Server

When you write your HTML, CSS, or JavaScript file you can press “Go Live” at the bottom of your VsCode window and it will automatically add your changes on a webpage without any reloads, etc.

3. Colorize

Colorize visualizes color variables by highlighting them with their color value. This is a handy timesaver for translating hex codes and variable names.

4. Prettier

For those of you that don’t know, Prettier is an opinionated code formatter for Javascript/Typescript, HTML, JSX, and more.

5. Project Manager

It helps you to easily access your projects, no matter where they are located. Don’t miss those important projects anymore.

6. Tabnine

Tabnine serves up suggestions for code completions right in Visual Studio Code, with no distractions and no downtime.

7. ESLint

This extension is used for analyzing your JavaScript code and fixing the errors in them. You can install and edit your JS code to fix the errors pointed out.

8. GitLens

This extension is used for getting information from a Git source that can be edited in the VS environment.

9. JavaScript (ES6) Code Snippets

This extension is used for setting shortcut triggers for JavaScript code that can be used to invoke a full code instead of typing out code on each instance.

Thanks for reading.✨

--

--