Full Stack Development Practical List
Full Stack Development Practical List
Practical List
Sr No Content
Pr.1 Write a program to create a website using HTML CSS and JavaScript.
Pr.2 Write a program to build a Chat module using HTML CSS and JavaScript.
Write a program to serve static HTML files using the core http module. Also handle basic
Pr.3
routes like /, /about, and /contact to open respective static files.
Create an application having one html form for taking user feedback as input. On submitting
Pr. 4 that form, append response in a file and read that text file to display its content in the console
and also on a webpage use Async/Await and promise for proper output.
Create a simple server using express module and route application to different pages using
Pr. 5
PUT. GET, POST and DELETE.
Create a form for Library books entry and display submitted data on a new EJS-rendered
Pr.6
page.
Create an application for an online MCQ quiz app. The questions and options should be
Pr.7
fetched from a JSON file in the backend.
Pr. 8 Build a desktop application on node.js to display index.html page
Build a blog website where you can add blog posts through a simple admin panel and the
Pr. 9 users can view the blog posts. The contents of the blog posts should be stored in MongoDB
database.
Pr. 10 Create a login application where authenticate user through SQL database.
Create an application in node.js where user enters his/her name and college details, set these
Pr. 11 details in cookies. Read these cookies next time user visits the same page, and delete cookies
based on click on forget data.
Pr. 12 Create an application to count visitors of the website using session.