Is Visual Studio Code the best code editor?

Lanash D
2 min readAug 25, 2020

My answer is definitely yes, there is no doubt about that. Visual studio code is a product of Microsoft and it is tailored for development. It is a totally free and open-source, runs everywhere. It is built using electron.js (a javascript framework to build desktop apps). vscode provides several extensions to increase productivity and it’s very much easy to install those extensions. It is available for both windows and mac. It is super popular because it’s easy to use tools, performance and it’s super lightweight.

Some of the useful features/extensions of vscode

  1. Live server — it is one of the very useful extensions for web development. It opens a live web page in your browser. We need not refresh the browser every time we make any changes to the code, the webpage will automatically refresh once the code is saved (Ctrl+ s).
  2. Live share — it is a real-time collaborative tool developed by Microsoft. Visual studio lives share enables you to collaboratively edit and debug with others in real-time,regardless what programming languages you’re using or app types you’re building. It allows you to instantly (and securely) share your current project, and then as needed, share debugging sessions, terminal instances, localhost web apps, voice calls, and more! Developers join your session receive all of their editor context from your environment which ensures they can start productively collaborating immediately, without needing to clone any repos or install any sdks.
  3. Bracket pair Colorizer — this extension allows matching brackets to be identified with colors. The user can define which characters to match, and which colors to use. Using this extension we can easily identify where a bracket opens and closes.
  4. Prettier-Code formatter — Prettier 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.

There is lot more about visual studio code. More information about VScode will be published in the upcoming days.

Click here to download Visual studio code. Don’t wait🔥🔥🔥

--

--