https://github.com/ananyamishra08/nalcoguesthousebooking
** It is not Nalco's official website as a Voccational Trainee i made this for learning purpose.
https://github.com/ananyamishra08/nalcoguesthousebooking
expressjs fetch-api frontend gsap html-css-javascript javascript tailwind
Last synced: 4 months ago
JSON representation
** It is not Nalco's official website as a Voccational Trainee i made this for learning purpose.
- Host: GitHub
- URL: https://github.com/ananyamishra08/nalcoguesthousebooking
- Owner: Ananyamishra08
- Created: 2024-07-03T19:55:01.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-01-18T17:14:08.000Z (5 months ago)
- Last Synced: 2025-01-18T18:25:07.739Z (5 months ago)
- Topics: expressjs, fetch-api, frontend, gsap, html-css-javascript, javascript, tailwind
- Language: HTML
- Homepage:
- Size: 1.79 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NalcoGuestHouseBooking
The page looks like this:

form page :

Step 1: Project Setup
Create a project directory and initialize a Node.js project
```sh
mkdir guest-house-booking
cd guest-house-booking
npm init -y
```
Step 2: Install Dependencies (check https://github.com/jlxw/static-json-db/tree/master)
#### Node.js
```sh
$ npm install express static-json-db
```
Step 3: Create a db.json file
```sh
{
"bookings": []
}```
Step 4: Create Frontend Files: Develop the frontend using HTML, CSS, and JavaScript.
Set Up the Server: Create an Express server to handle API requests and serve static files.
Run the Server: Start the server and test your application.(using Nodejs or normal HTTP- server)