https://github.com/lilessam/realtimesocketio
Example for NodeJS real-time application using SocketIO, MongoDB, VueJS and Mongoose ORM
https://github.com/lilessam/realtimesocketio
express mongodb mongoose nodejs socket-io vuejs
Last synced: over 1 year ago
JSON representation
Example for NodeJS real-time application using SocketIO, MongoDB, VueJS and Mongoose ORM
- Host: GitHub
- URL: https://github.com/lilessam/realtimesocketio
- Owner: lilessam
- Created: 2017-09-17T06:49:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-17T06:57:38.000Z (almost 9 years ago)
- Last Synced: 2025-01-20T00:53:22.648Z (over 1 year ago)
- Topics: express, mongodb, mongoose, nodejs, socket-io, vuejs
- Language: JavaScript
- Size: 390 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Real-Time Application Example
A tiny small tasks app to test socket IO with NodeJS.
#### Technologies Used
1. NodeJS.
2. Express.
3. MongoDB.
4. Mongoose.
5. SocketIO.
6. VueJS.
7. Laravel Mix.
##### Notice
Before running the application make sure you create a mongoDB collection called `tasks` and its schema should be:
```JSON
{
title : String,
done : Boolean
}
```
You can set the configuration of the DB in `models/task.js` file.
It's been built for learning purpose.