Quick-Chat is a simple, real-time messaging app built mainly with JavaScript. It’s designed to get you chatting with friends or teammates in seconds, with minimal setup and a clean interface. Perfect for quick projects, events, or learning how chat apps work.
- Instant Messaging: Chat in real time with others.
- Minimal UI: Clean, user-friendly interface.
- Quick Start: Just clone, install, and run—no fuss.
- Cross-Browser: Works in all modern browsers.
Quick-Chat/
├── public/ # Static files (HTML, CSS, images)
├── src/ # Main JavaScript code (UI, logic)
│ ├── components/ # Reusable UI components
│ ├── utils/ # Helper functions
│ └── ... # App logic and more
├── package.json # App dependencies and scripts
└── README.md # Project info (this file)
- Node.js (v18 or higher recommended)
- npm (comes with Node)
-
Clone the repository
git clone https://github.com/Honey-pg/Quick-Chat.git cd Quick-Chat -
Install dependencies
npm install
-
Start the app
npm start
-
Open in your browser
- Visit http://localhost:3000 (or the port shown in your terminal).
- Enter your name or nickname and join the chat.
- Start sending messages instantly.
- No extra configuration needed.
If you want to change the server port or add environment variables, check for a .env or config section in the code.
Typical options include:
PORT(default: 3000)
- Port Already in Use: Change the port or close other apps using the same port.
- Can't Connect?: Make sure Node.js is installed and you ran
npm install.
Found a bug or want to add a feature?
- Fork the repo
- Make a new branch
- Commit your changes
- Open a pull request
Suggestions and improvements are always welcome!
This project is currently unlicensed.
If you plan to open-source or distribute it, please add a license file.
Happy chatting!