DEV Community

Kelsey Hughes
Kelsey Hughes

Posted on

My current favorite extensions on VS Code

I love Visual Studio Code. I love the add-ons and extensions they have and I've found a couple I wanted to share with fellow coding newbies!

Bracket Colorizer 2

Alt Text
If I had to pick, this would definitely be my number one favorite extension. This extension helps you to keep track of your brackets and match them. This is especially helpful if you have a lot of nested loops and if-else statements. It's easy to find yourself losing track of where one began and where the next ends. For me, it makes debugging easier when it comes to syntax and formatting. Here's an example of how the extension helps to color code your brackets:
Alt Text
If you don't already have this extension added, definitely give it a try!

Dracula Official Theme

Alt Text
I love pretty colors and I love visually appealing things and designs. Dracula Theme is a pretty pink, green, and yellow color based theme. This theme is brightly colored, and another thing I love about it, is the the automatic italicized function parameters and color-code variables.
Alt Text
It's visually easier for me to follow, and when I launch my VSCode, I'm already excited to code because I enjoy the theme I'm looking at. If you haven't changed your color theme in a while, maybe try this one out it'll give your application a fresh new look and maybe a little boost of excitement.

Live Server and Open In Browser

Alt Text
Alt Text
I listed these both together because they both serve the same purpose: allowing you to preview before the live build. Open in Browser allows you to right click on your html documents and select for it to be opened in your default browser or a pre-selected browser of your choice. This is especially helpful for testing your HTML and CSS cross-browser. This is one I lean on daily.
Alt Text
Live Server serves the same purpose but it's bonus over Open In Browser is that you're able to see everything--you guessed it, LIVE! Without having to refresh the page, you can see and test the functionality of your app which saves you a few extra clicks. Work smarter, not harder. Automate what you can. Live Server is great for that.

Prettier

Alt Text
A new extension I've added to my list that I can't wait to use more often. Prettier is a code formatter that helps to structure your code in an organized and consistent manner. As coding newbies, getting into a habit of consistent structure can be great for us especially as we start to code longer and longer lines of code. I haven't used this too too much so far, but I have it installed now and think that it'll be a great way to lessen the strain of thinking about my formatting too much while also thinking about the problem I'm trying to solve.

What are some of your favorite extensions? I'm always looking for ways to streamline testing, debugging, and production. Share below!

Top comments (0)