-
Design an HTML Page for Displaying List of Students with Academic Information
-
Write a JavaScript to Validate Details of Student from Registration Form
-
Write a JavaScript to Calculate Student Percentage and Display Grade
-
Design a Dynamic Personal Profile Page Using CSS and JavaScript
-
Develop Your Own Node.js Module to Display the Date
-
Create a Node.js File that Reads the HTML File and Returns the Content
-
Create an application to demonstrate routing in Express.js Framework
-
Create an application to handle different types of http request and response in Express.js Framework
-
Implement Node.js - RESTful API for listing the details of a user from JSON file
-
Implement Node.js - RESTful API for adding new user details from JSON file
-
Implement Node.js - RESTful API for fetching details of a specific user from JSON file
-
Implement Node.js - RESTful API for deleting user details from JSON file
-
Write a program to Update the document, but if not found insert it
To execute the JavaScript code, use the following commands in the terminal:
node file_name.js
or
node file_name
⚠️ for deleting user details from JSON file open two terminals
- in one terminal
node file_name.js
- inanother terminal
curl -X DELETE http://localhost:8080/deleteUser/2
you can change the id at the very end
To execute the React code, use the following commands in the terminal:
- Create a new React Project
npx create-react-app my-app
- Navigate to the Project Directory:
cd ./my-app/scr
⚠️ Delete all the files within thesrc/
folder and add your React code:
rm *.js *.css *.svg
⚠️ Also Note that the Js file you add should be named index.js:
- Start the Development Server:
npm start