Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
alot of fixes!
Browse files Browse the repository at this point in the history
  • Loading branch information
chillingstar committed Sep 28, 2024
1 parent 18be512 commit c862e41
Show file tree
Hide file tree
Showing 9 changed files with 246 additions and 507 deletions.
46 changes: 14 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
# Limbo


Limbo is a fast and lightweight chat application built with Next.js, React.js, TypeScript, MongoDB, and Socket.IO. It features a login/register mechanism built from scratch.


Limbo is a fast and lightweight chat application built with Next.js, React.js,
TypeScript, MongoDB, and Socket.IO. It features a login/register mechanism built
from scratch.

[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/chillingstar/limbo)](https://github.com/chillingstar/limbo/commits)
[![GitHub last commit](https://img.shields.io/github/last-commit/chillingstar/limbo)](https://github.com/chillingstar/limbo/commits)



## Features



- Real-time messaging using Socket.IO

- User authentication and registration
Expand All @@ -22,32 +17,25 @@ Limbo is a fast and lightweight chat application built with Next.js, React.js, T

- Lightweight and scalable architecture



## Technologies Used



- Next.js: A React framework for server-side rendering and static site generation.
- Next.js: A React framework for server-side rendering and static site
generation.

- React.js: A JavaScript library for building user interfaces.

- TypeScript: A statically typed superset of JavaScript that compiles to plain JavaScript.
- TypeScript: A statically typed superset of JavaScript that compiles to plain
JavaScript.

- MongoDB: A NoSQL database for storing and retrieving data.

- Socket.IO: A library for real-time, bidirectional communication between web clients and servers.


- Socket.IO: A library for real-time, bidirectional communication between web
clients and servers.

## Getting Started



To get started with Limbo, follow these steps:



1. Clone the repository: `git clone https://github.com/chillingstar/limbo.git`

2. Install dependencies: `npm install`
Expand All @@ -56,20 +44,14 @@ To get started with Limbo, follow these steps:

4. Start the development server: `npm run dev`

5. Open your browser and navigate to `http://localhost:80`, or whatever port that you entered.


5. Open your browser and navigate to `http://localhost:80`, or whatever port
that you entered.

## Contributing



Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.


Contributions are welcome! If you find any bugs or have suggestions for
improvements, please open an issue or submit a pull request.

## License



This project is licensed under the [StarProjects License](LICENSE).
This project is licensed under the [StarProjects License](LICENSE).
Binary file added bun.lockb
Binary file not shown.
Binary file added database.db
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"dotenv": "^16.4.5",
"events": "^3.3.0",
"express": "^4.19.2",
"mongoose": "^8.4.1",
"mysql2": "^3.10.0",
"net": "^1.0.2",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"readable-stream": "^4.5.2",
"sha256": "^0.2.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5"
"socket.io-client": "^4.7.5",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/node": "^20.14.2",
Expand Down
6 changes: 3 additions & 3 deletions postcss.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
tailwindcss: {},
},
plugins: {
tailwindcss: {},
},
};

export default config;
Loading

0 comments on commit c862e41

Please sign in to comment.