5 Vs code extension's to increase your developer productivity

posted Originally published at dev.to 2 min read

Hey there developers. How is it going. Today in this blog, I will be showing you 5 useful vs code extension's which will increase your developer productivity. So if you are interested, continue reading...

1. Bookmarks

I use this extension all the time when I am working on any project. Basically this extension allows you to add bookmarks in specific lines in a file. You can also add a note why you have added this bookmark. And you can also explore the bookmarks in the bookmarks tab. Which will show you all the bookmarks in a particular project.

Vs Code extension

2. Better Comments

This extension is super helpful if you want to improve code commenting. By default the comments have a dimmed color. By using this extension. You can make them colorful for any specific purpose. Like if there is something todo, you can use the TODO tag before writing the comment. Like so - // TODO: what to do. For more information's about usage, please check out the better comments documentation.

Vs code extension

3. Code Spell Checker

If you misspell any word in vs code, by default it doesn't shows any warning if the spelling is not correct. By using this extension, You can will get a warning message in the problems tab if any of the word is not spelled correctly.

Vs Code Extensions

4. Prettier

This extension formats your unformatted code. So you don't need to focus on formatting you code. Prettier will do it for you. To start formatting your code with prettier, make sure you add these settings in your settings.json after installing it. And you will be good to go.

`json
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
`

5. Thunder Client

Are you still using Postman for api testing? Well that's fine. Postman does this duty just perfectly. But for me, when I am working on any project in vs code, I do like to be in vs code. I don't like to open any other external application, it effects on my productivity. So I use this cool Vs code extension. It works same as postman. Nothing new, you can send request to any kind of api from vs code. It really helps me to increase my developer productivity.

Vs code Extensions

Conclusion

These are the productivity vs code extension's, Which I use all the time and wanted to share with you guys. Now I wanted to know what are your productivity extension's? Let me know in the discussions. And make sure you follow me for all the cool article just like that.

:)

Get Me on ->

If you read this far, tweet to the author to show them you care. Tweet a Thanks
Great list of extensions! I’ve been using Prettier for a while, and it’s a game-changer for formatting. I’m curious—have you tried ESLint alongside it for linting? They work really well together!

More Posts

5 Internal Developer Platforms You Need to Know About!

Juraj Karadža - Nov 24, 2024

WebChatForGemini : The VSCode Companion

Abdul Daim - May 2, 2024

LinkedIn vs. dev.to: What's better for Developers ?

ravixalgorithm - Jan 7

How to Add a Clickable Visitor Counter to Your Website

Bridget Amana - Dec 30, 2024

Discover how to use AI writing tools without losing your authentic voice as a content creator.

Jimmy McBride - Oct 11, 2024
chevron_left