An open API service indexing awesome lists of open source software.

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

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.