This is an ongoing series of posts where I cover how to create a Node/Express/Mongo back-end with an Ember front end. We've already created a REST serverinterface in a previous post then we added in Mongo and finally we added in an edit and delete quote feature. With…
continue reading →
Using a great front-end framework like Ember is fun to use. Unfortunately most applications we write are going to need some sort of back-end. We could go with Firebase and I've done that in a previous post. What else is out there? Most people would argue that Rails is the…
continue reading →
Socket.IO enables real-time event-based communication. What that means is that we can communicate to the server from the client and in return the server can talk back to the client. Socket.IO uses WebSockets when it can and has failovers if the browser does not support it. It's fairly…
continue reading →