This is a simple chat application. It provides multiple chatrooms with separate chat histories. To enter the chatrooms, you have to signup with a username and password. Your password get`s hashed and salted multiple times and wont get saved in plaintext. 🙅
Feel free to join:
The site may need some time to rebuild, if it`s in sleep mode 😪
This project was initialized with 💻
npx create-next-app --example with-typescript with-typescript-app
Checkout other Next.js examples here
Feel free to clone the repo. You will need a connection to a database and a secret-key to validate the authorization via JWT. Dont forget to add this credentials in an .env file. You also need a node version 14+.
npm install
// .env file
DB_CONNECTION=XXX
DB_NAME=XXX
SECRET_KEY=XXX
// run development server on http://localhost:3000/
npm run dev
MIT