Learn Express JS and build a simple REST API
To get started with the workshop, follow these steps:
-
Clone this repository to your local machine. Open your terminal and run the following command:
- Link to Donload Git: Git
git clone https://github.com/adithyapaib/expresstut
- Configure the git user name and email using the following commands:
git config --global user.name "Your Name" git config --global user.email "[email protected]"
-
Navigate to the project directory:
cd expresstut
-
Install the required dependencies:
npm install
-
Install Nodemon globally:
npm install -g nodemon
-
Start the application:
nodemon index.js
-
Open your browser and navigate to
http://localhost:3000/
to see the application in action.