April 2015
Intermediate to advanced
278 pages
5h 38m
English
In the previous section, you learned how to push the server logs from the server to the client; now, we need to organize these logs on the client, and then process and display them.
Let's create a HTML page for our client application; we need to load the JavaScript libraries (D3.js, AngularJS, Socket.IO, the CSS layout Bootstrap, and all application files). Due to the usage of Socket.IO on the server side, it can be referenced on the client side with the /socket.io/socket.io.js pseudo location; all other third-party libraries are loaded from the bower_components directory.
We create the index.html page in the root directory of the project, add all ...