Skip to content

Instantly share code, notes, and snippets.

View E7-87-83's full-sized avatar

Fung Cheok Yin E7-87-83

View GitHub Profile
@techslides
techslides / form3.js
Created October 16, 2014 21:01
HTML Form POST Submit via Ajax to Node.js
// Load the http module to create an http server.
var http = require('http');
// Create a function to handle every HTTP request
function handler(req, res){
var form = '';
if(req.method == "GET"){