Skip to content

amartini/vue-mongo-todo

 
 

Repository files navigation

Vue Mongo Todo

This is a really simple real time todo app built with Node, Vue, and MongoDB.

Requirements

The following are required by this app and must be install on your machine to work.

WebSockets

The socket.io library is used to push real time updates to the browser. Reminders are synced with the use of socket.on to listen for events on the client, and socket.emit to push events from the server.

Install

This will install all required dependencies for the server to run.

npm install

Start Server

This will start both the database and web server.

npm start

You can now access the app on the localhost domain: localhost:8080. The server will also bind to all available addresses, so if you wish to access the app across a network, use the local ip address of the machine running the server.

ip addr show

It will look something like 192.168.1.xxx

About

This is a really simple real time todo app built with Node, Vue, and MongoDB.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 65.7%
  • HTML 18.4%
  • CSS 15.9%