/vue-chat

Real time chat with Vue, Node and Socket.IO

Primary LanguageJavaScriptThe UnlicenseUnlicense

Realtime chat with Vue and Node ala WhatsApp

Working example: https://vuechat.amparo.dev/

Avaliable user:password

iban:12345
gorka:12345
manu:12345
juancarlos:12345
javier:12345
luis:12345
edurne:12345 
angel:12345 
patricia:12345 
alex:12345 
gemma:12345 
alberto:12345 
iñigo:12345 
jonathan:12345 
nayra:12345 
fran:12345 
estíbaliz:12345 

What is this and what not.

Its a chat room ala WhatsApp (simplified very much). I build it for fun and learning purposes.

This has no data persistence, no database, the server only gets the messages and broacast them to the clients, the users data is a JSON file and the management of who is online is an array.

It has two parts :

Frontend: Vue.js (the client side)

Its in the folder vue-chat-front for development:

cd vue-chat-front
npm install
npm run serve

For production:

cd vue-chat-front
npm run build

The ports and domains are configurable via .env.development y .env.production.

Use this software besides from Vue itself:

Backend: Node.js

No data persistence, no database, the server only gets the messages and broacast them to the clients.

User management is a simple class: User controller

Users data (is a JSON file): Users

What id does?:

  • Creates a http server with a simple API end point for the login.
  • All the rest of get request are redirected to 'vue-chat-front/dist', the front side.
  • Creates a Socket.io server.

With what?:

Is in the folder vue-chat-serve to get it up & running:

cd vue-chat-server
npm install
node index.js

In production I use pm2.