Skip to content

pestechnology/Button_UI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Button UI is a basic Node.js + Express application that serves a simple UI page to test and understand different button properties and functionalities.

Project Features

Runs on Node.js with Express server

Serves static frontend files from the public/ folder

Includes 3 different buttons to test UI behavior

Allows testing of button events and properties using JavaScript

Tech Stack

Node.js

Express.js

HTML

CSS

JavaScript

Folder Structure

button_ui/ ├── public/ │ ├── index.html │ ├── style.css │ └── script.js ├── server.js ├── package.json ├── package-lock.json └── .gitignore

Setup Instructions

  1. Install Node.js

Make sure Node.js is installed on your system.

Check version:

node -v npm -v

  1. Install dependencies

Open terminal inside the project folder and run:

npm install

  1. Run the application

Start the server using:

node server.js

  1. Open in browser

After running, open:

http://localhost:3000

How the Application Works

The Express server starts using server.js

It serves the frontend files from the public/ folder

The UI loads from public/index.html

Styling is applied from public/style.css

Button functionality and event handling is controlled by public/script.js

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published