JS Setting Up Environment

HTML
CSS
C#
SQL

Setting Up Environment

Choose a text editor or an integrated development environment for writing your JavaScript code. Popular choices include Visual Studio Code, Sublime Text, Atom, or JetBrains WebStorm.

Installation of Visual Studio Code (VS Code)

Follow these steps to download and install Visual Studio Code:

1. Download VS Code:

– Visit [https://code.visualstudio.com].
– Select the download link for your operating system (Windows, macOS, or Linux).

2. Installation:

– On Windows, run the installer and select the option to add VS Code to the system PATH.
– On macOS, drag VS Code to the “Applications” folder and install the code command in the terminal.
– On Linux, refer to distribution-specific installation instructions on the VS Code website.

Installation of Live Server and Material Icon Theme Extension in VS Code

Follow these steps to install Visual Studio Code Extensions :

1. Install VS Code Extensions:

– Open Visual Studio Code.
– Navigate to the Extensions view by clicking on the Extensions icon in the Activity Bar on the side of the window or using the shortcut `Ctrl+Shift+X` (Windows/Linux) or `Cmd+Shift+X` (Mac).

2. Search for Extensions:

– In the Extensions view, search for the following extensions:
– Live Server
– Material Icon Theme

3. Install Extensions:

– Click on the install button next to each extension you want to install.

4. Configure Live Server:

– After installing Live Server, open an HTML file in VS Code.
– Right-click anywhere in the HTML file.
– Select “Open with Live Server” from the context menu.

5. Configure Material Icon Theme:

– After installing the Material Icon Theme, you might need to reload VS Code.
– Go to “File” > “Preferences” > “File Icon Theme” and select “Material Icon Theme” from the dropdown.

Now, you should have a Live Server for easy HTML file serving and a Material Icon Theme for a visually appealing icon set in VS Code.