Mobile-Web-App

Thursday, June 19, 2014

Polymer: making Web Components accessible

›
Custom elements allow you to create your own encapsulated components on the web, however there are a number of questions that arise from thi...
Wednesday, June 18, 2014

Polymer: Interacting with Google Services with HTML only

›
Google has over 250 APIs and services. Every API is different! Eric Bidelman shows you how you can interact with Google services without wri...
Tuesday, June 17, 2014

Node.js + socket.io, emit events between server and client, bi-directionally.

›
server.js var serverapp = require('http').createServer(handler); var io = require('socket.io').listen(serverapp); var ...
Sunday, June 15, 2014

Node.js + socket.io, receive data from client

›
Example to get data from client using Node.js + socket.io. To use socket.io, you have to install it using npm $ npm install socket.io...
Saturday, June 14, 2014

Node.js example to handle POST method

›
server.js var http = require("http"); var fs = require('fs'); fs.readFile('page.html',function (err, data){ ...
Thursday, June 12, 2014

Node.js load external html file

›
Example to load html code from external file, instead of code in js . server.js var http = require("http"); var fs = require...

Return html code in Node.js

›
var http = require("http"); http.createServer(function(request, response){ var htmlbody = "<html>...
‹
›
Home
View web version
Powered by Blogger.