Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 811 Bytes

File metadata and controls

43 lines (28 loc) · 811 Bytes

Ember Websockets Example

Backend: A quick and easy node server to deliver random numbers at random intervals.

Frontend: Ember 2 app with ember-websockets addon

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone this repository

Backend

  • cd socket-backend
  • npm install
  • bower install

Frontend

  • cd socket-frontend
  • npm install
  • bower install

Running / Development

Backend

  • cd socket-backend
  • node server.js

Frontend