https://github.com/praveenkumar-kalidass/mad-message
A Chat application with React.js, Node.js, Postgresql and Socket.io
https://github.com/praveenkumar-kalidass/mad-message
nodejs postgresql reactjs socket-io
Last synced: 3 months ago
JSON representation
A Chat application with React.js, Node.js, Postgresql and Socket.io
- Host: GitHub
- URL: https://github.com/praveenkumar-kalidass/mad-message
- Owner: praveenkumar-kalidass
- Created: 2019-04-04T09:25:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T23:40:13.000Z (over 3 years ago)
- Last Synced: 2025-03-28T19:49:26.641Z (about 1 year ago)
- Topics: nodejs, postgresql, reactjs, socket-io
- Language: JavaScript
- Homepage:
- Size: 1.5 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mad-message
A Chat application with React.js, Node.js, Postgresql and Socket.io
## Specifications
- React.js
- Node.js
- Socket.io
## Environment setup
### Database configuration
Create a database with the following configuration,
- Database name: `mad-message`
- Username: `postgres`
- Password: `root`
Modify this configuration in `server/database.config.json`.
### Database migration
Execute the following commands to migrate table and initial data load to database,
- Table migration: `npm run migrate`
- Load data: `npm run seed`
### Install node modules
Run `npm install` to install `node_modules`.
## Run in development mode
- Client: `npm run dev`
- Server: `npm run server`