20 July 2024

Before Starting

coding
What is the right path?

T
Written by

thatonevikash

Before Starting!

Where to start?

In the world of coding! Where to start?, is the biggest question nowadays.

Many will suggest you, You can start coding in notepad. Which may be a good idea but not the best.

Because, notepad is capable enough to make a source file. Open notepad then create a file and save it with extension .js

// index.js
console.log("Hello World!")

[!important]
source file, is the file which has an specific extension type.
And when we exexute the file using a compiler, it produces some output.

As I said! notepad is capable enough to create a source file, but it is not a best choice, If you are targetting to code for longer.

You must go with an IDE! ⭐

What is an IDE?

IDE, stands for Integrated Development Environment. Which provides all the facilities you will use to build any project.

  1. Syntax hightlighting

    console.log("Docs.dev - Before Coding");
    
  2. Auto indentation

    function sayHello() {
      console.log("hello!");
    }
    
    sayHello();
    
  3. Integrated terminal: To run and execute CLIs.

  4. Version control: Default support for version control systems using git, github, and gitlab more.

  5. Extension supports: To work efficiently and to use different different features in one place.

  6. Language support: Whether you are coding in JavaScript, Python, Java or any other language, an IDE offers a consistent interface.

Let's go with vscode 😎

*A powerful IDE built by Microsoft*.

Download vscode from the official site: install

vs code

Popular extenstion for vscode 👇

  1. Live server

live server

  1. Prettier

prettier

  1. Code runner

code runner

  1. Material icons

material icons

  1. Auto rename tag

auto rename tag

Written with 💖 by thatonevikash!