DEV Community

Hari Krishnan
Hari Krishnan

Posted on

FSD 1.1.2 - Setting up a code-editor

What is a code-editor ?

A code editor is a software tool specifically designed for writing and editing code. It is mainly used for

  1. Syntax Highlighting: It colors different parts of the code (like keywords, variables, and functions) to make it easier to read and understand.

  2. Autocompletion: It suggests code snippets, variable names, and functions as you type, helping you write code faster and with fewer errors.

  3. Error Detection: Code editors often highlight errors or issues in your code, such as missing semicolons or typos, to help you debug and fix problems.

  4. Integrated Tools: Many editors come with built-in features like version control, debugging tools, and terminal access, streamlining the development process.

Examples of popular code editors include Visual Studio Code, Sublime Text, and Atom.

Editor Installation

  1. Visit the offical VS code website - https://code.visualstudio.com/download
  2. There are many other alternative editors, but it is recommended to use VS code as it is open-source, built by Microsoft and has very good community support.

Top comments (0)