Aticles

Articles

Let's Reading

Article Details

20 Best VSCODE Extentions to Improve your productivity.

Extensions to your IDE are invaluable to speed up your work without reducing the quality of your output. Considering Visual Studio Code is the most popular IDE, here are 20 VSCode extensions that will make you a more productive developer. These extensions mostly apply to web developers, but there are some general-purpose extensions that will benefit everyone else too.

Here are the VSCode extensions we'll cover:

  • Settings Sync
  • Live Server
  • Remote - SSH
  • Prettier
  • GitHub Copilot
  • Auto Rename Tag
  • GitLens
  • Git History
  • CSS Peek
  • JavaScript Code Snippets
  • Peacock
  • Colorize
  • indent-rainbow
  • Code Spell Checker
  • Debugger for Chrome
  • Icon Fonts
  • Turbo Console Log
  • TODO Highlight
  • vscode-icons
  • Regex Previewer
  • Bookmarks

1. Settings Sync



Before you start installing extensions left and right, it's good to know of the existence of Settings Sync. It allows you to sync to GitHub almost everything you customize on VSCode, from settings to keyboard shortcuts to other VSCode extensions. This way, you'll have access to your preferred IDE from whichever device you want, instead of having to program from a vanilla VSCode environment on new devices or having to manually set up everything again.

2. Live Server



This is the favorite VSCode extension of many software developers. Live Server launches a local development server with a live reload feature both for static and dynamic pages. Every time you save your code, you'll instantly see the changes reflected in the browser. You'll be much faster at spotting errors and it's much easier to do some quick experiments with your code.

3. Remote - SSH



The Remote - SSH extension lets you use any remote machine with an SSH server as your development environment. This makes it much easier to develop and/or troubleshoot in a wide variety of scenarios. You also don’t need any source code on your local machine, because the extension runs commands and other extensions directly on the remote machine.

4. Prettier



Prettier is an opinionated code formatter that works particularly well if you have multiple people working on a single project, because the extension enforces a consistent style. You can set it up so it formats your code every time you save it, significantly reducing the amount of time you need to spend formatting your code.

5. GitHub Copilot



Some would call GitHub Copilot a revolution in computer programming, others would call it a useful tool. Whatever you think of it, the autocomplete AI is worth integrating into your workflow. Trained on GPT-3, GitHub Copilot gives code suggestions, auto-completes code, and can even help write code when you provide a natural language comment.

6. Auto Rename Tag



While VSCode inherently highlights matching tags and immediately adds closing tags whenever you type an opening tag, Auto Rename Tag automatically renames tags that you change. The extension works for HTML, XML, PHP, and JavaScript, and removes the need to change your tag names twice. Edit: a few people in the comments have mentioned that Auto Rename Tag is quite buggy, so proceed with care.

7. GitLens



GitLens supercharges the Git capabilities of Visual Studio Code. This is a powerful extension that allows you to see who, why, and how lines of code have changed over time (among lots of other features). GitLens is a highly customizable extension. If you don’t like a particular setting, you can easily turn it off in settings.

8. Git History



Similar to GitLens, Git History is a VSCode extension that gives a visual of the git log. No longer should you look through git log in the terminal. The extension is quite comprehensive. It allows you to compare branches, commits, and files across commits. You can also look up Github avatars, which is quite neat.

9. CSS Peek



This extension is invaluable for front-end developers. Inspired by a similar feature in the IDE Brackets, CSS Peek allows you to extend your HTML and ejs file to show CSS/SCSS/LESS code within the source code. It also allows you to quickly jump to the right CSS code if you know the class or ID name.

10. JavaScript Code Snippets



While VSCode includes built-in JS IntelliSense, JS Code Snippets enhances that experience by adding a slew of import/export triggers, class helpers, and method triggers. The extension supports JS, TypeScript, JS React, TS React, HTML, and Vue. In the VSCode Marketplace, code snippets for other flavors, such as Angular, are also readily available.

11. Peacock



Here’s a cute one. Peacock allows you to change the color of your Visual Studio Code environment, so you can quickly identify which instance you’ve just switched to.

12. Colorize



Sticking with colors, Colorize instantly visualizes CSS colors in your CSS/SASS/Less/... files. This makes it very easy to see at a glance which colors you’re using where.

13. indent-rainbow



More colors! indent-rainbow colorizes the indentation of your code, alternating colors at every step t make for a really nice rainbow. Especially helpful when writing code in Python, Nim, Yaml, and perhaps even filetypes that aren't very indentation-dependent.

14. Code Spell Checker:



Although it isn't life-threateningly important, I prefer my code to have no spelling errors. Code Spell Checker underlines words that it doesn't recognize in its dictionary files. The extension is available in many different languages and supports jargon such as medical terms.

15. Icon Fonts



Icon Fonts offers snippets for a variety of icon fonts, including the popular Font Awesome v5 icon pack. For those of you not using VSCode, this package is also available for Atom and Sublime Text.

16. Turbo Console Log



The Turbo Console Log extension automates the process of creating a meaningful log message. It makes debugging much easier, because you’ll have some useful console output to figure out what went wrong.

17. TODO Highlight



I confess. I've been guilty of writing TODOs in my comments to then totally forget about them. TODO Highlight makes them stand out much more. You can toggle the highlights and can also list all the highlighted annotations and reveal them from the corresponding file.

18. Brackevscode-icons



You wouldn't think icons make a big difference, but they really do (for me, at least). VSCode-icons adds a splash of color and cute little icons to your IDE that I've come to love.

19. Regex Previewer



Regular expressions can be quite the puzzle to get right. Regex Previewer gives you a side document that matches your regex. The extension gives multiple examples to match, so it becomes much easier to quickly and accurately write a regex for a variety of use cases.

20. Bookmarks



Although VSCode has line numbers, Bookmarks allows you to add bookmarks to your code, helping you quickly navigate and easily jump back and forth. Additionally, it allows you to select regions of code between bookmarked code, which is quite useful for something like log file analysis.

In summary, the world of software development is constantly evolving, and staying ahead requires the right tools and resources. Visual Studio Code has emerged as a leading IDE, offering a powerful and flexible platform for developers worldwide. The extensions highlighted in this article are just a glimpse into the vast ecosystem of extensions available for Visual Studio Code, each designed to enhance productivity and streamline workflows.

From the essential functionality of Settings Sync and Live Server to the innovative capabilities of GitHub Copilot and Regex Previewer, these extensions cater to a wide range of needs and preferences. Whether you're a seasoned developer or just starting, these extensions can help you write better code faster and more efficiently.

As technology continues to advance, so too will the tools available to developers. Visual Studio Code and its extensions are at the forefront of this evolution, empowering developers to create amazing software and push the boundaries of what's possible. So why wait? Start exploring these extensions today and take your coding experience to new heights.

All content, including text, images, and logos, are the property of their respective owners. Credits and acknowledgments to the original creators are given where applicable.Any trademarks, service marks, and logos are the trademarks or registered trademarks of their respective owners.

Post Comment

Your email address will not be published. Required fields are marked *