Chapter 1: Development Environment¶
-
Install & setup
VS code
on your PC or laptop.¶- Download VS code according to your OS. You can find the relevant package/executable here.
How to install:
Windows: https://code.visualstudio.com/docs/setup/windows
Linux: https://code.visualstudio.com/docs/setup/linux
Mac: https://code.visualstudio.com/docs/setup/mac
-
After installing
VS Code
, Open it. If you openVS Code
for the first time, you'll get the following screen. Here you can see some configuration settings(Ex - theme) and a quick setup guide. You can go through this guide if you're new toVS Code
or can simply click "Mark Done" to skip these steps. -
After opening
VS Code
, go ‘Extensions’ tab by clicking the following icon on the left menu or you can find the ‘Extensions’ tab,Top menu
>View
>Extensions
. -
In the search box, search for
‘tailwind’
and install the‘Tailwind CSS IntelliSense’
extension by Tailwind Labs. -
Then click 'Install' button to install the extension on your PC. After installing you'll see bellow tab/window.
- Download VS code according to your OS. You can find the relevant package/executable here.
How to install:
-
Install the
node
on your development PC or laptop.¶- Download node according to your OS. You can find the relevant package/executable here.
How to install:
Windows, Linux, Mac: https://kinsta.com/blog/how-to-install-node-js/
Open terminal and type the following command to confirm everything has been installed correctly.
‘npm -v’
- Download node according to your OS. You can find the relevant package/executable here.
How to install:
-
Install
git
on your PC or laptop.¶- Download the git according to your OS. You can find the relevant package/executable here:
Windows: https://git-scm.com/download/win
Linux: https://git-scm.com/download/linux
Mac: https://git-scm.com/download/mac
How to install:
Windows, Linux, Mac: https://www.atlassian.com/git/tutorials/install-git
Open terminal and type the following command to confirm everything has been installed correctly.
‘git --version’
- Download the git according to your OS. You can find the relevant package/executable here: