DEV Community

Cover image for 10 Visual studio code extensions to ease your web development
Flovet-stack
Flovet-stack

Posted on

10 Visual studio code extensions to ease your web development

Visual studio code is the most used source-code editor in web development and I will recommend it to anyone.

It's in-built functionality and preinstalled plugins make it one the best tool to use for web dev its features include support for debugging, syntax highlighting, intelligent code completion, snippets, code refactoring, and embedded Git.

That being said here are a few extensions that will take its utility a step further in turn increasing your web development skills.

1. Live Server

Alt Text

This is an essential extension for any web developer, it enables you to launch a development local Server with a live reload feature for static & dynamic pages.

Click to get Live Server for vscode

Alt Text

2. Auto Rename Tag

Alt Text

This extension helps you to rename the opening and closing tags of an element simultaneously.

Get auto rename tag here

Alt Text

3. Bracket Pair Colorizer

Alt Text

This extension allows matching brackets to be identified with colors. The user can define which characters to match, and which colors to use.

get Bracket pair colorizer here

Alt Text

4. Path Intellisense

Alt Text

Visual Studio Code plugin that autocompletes filenames. This will defiantly come in handy when working on a project with many files.

get path intellisense here

Alt Text

5. ESLint

Alt Text

ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code.

Get ESLint here

Alt Text

6. JavaScript (ES6) code snippets

Alt Text

Code snippets for JavaScript in ES6 syntax.

get javascript (ES6) code snippets here

Alt Text

7. Debugger for Chrome

Alt Text

Debug your JavaScript code in the Chrome browser or any other target that supports the Chrome Debugger protocol.

Get debugger for chrome here

Alt Text

8. GitLens — Git supercharged

Alt Text

Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more.

get gitlens here

Alt Text

9. Prettier - Code formatter

Alt Text

If you are one who likes beautiful code well prettier is here for you it is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.

Get prettier here

Alt Text

10. Live Share

Alt Text

Real-time collaborative development from the comfort of your favorite tools.
Visual Studio Live Share enables you to collaboratively edit and debug with others in real-time, regardless of what programming languages you're using or app types you're building.
This extension is fun to use and will help you develop your collaborative skills.

Get live share here

Alt Text

Thanks for reading and I hope this information will take you one step closer to becoming a better web developer.

Top comments (0)