https://github.com/apxsnowflake/realtimesocketio
Example for NodeJS real-time application using SocketIO, MongoDB, VueJS and Mongoose ORM
https://github.com/apxsnowflake/realtimesocketio
express mongodb mongoose nodejs socket-io vuejs
Last synced: 2 months ago
JSON representation
Example for NodeJS real-time application using SocketIO, MongoDB, VueJS and Mongoose ORM
- Host: GitHub
- URL: https://github.com/apxsnowflake/realtimesocketio
- Owner: ApxSnowflake
- 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-12-29T16:28:30.751Z (6 months ago)
- Topics: express, mongodb, mongoose, nodejs, socket-io, vuejs
- Language: JavaScript
- Size: 390 KB
- Stars: 1
- Watchers: 1
- 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.