I am new to nodejs. I am trying a basic example using http requests Get,Post and Put. I am done with POST and GET.
var http = require("http");
var port = 8081;
function getLogin(req, resp){
resp.writeHead(200, {"Content-Type" : "text/html" });
resp.write("<html><body><form action='http://localhost:8081/home' method='post'><table><tr><td>Username : <input type='text' name='username' id='username' required/></td></tr><tr><td>Password : <input type='password' name='password' id='password' required/></td></tr><tr><td><input type='submit' value='Login' /></td></tr></table></form></body></html>");
resp.end();
}
function getHome(req, resp){
resp.writeHead(200 , {'Content-Type':'text/html'});
resp.write("<html><body>Niranth<br><input type='button' value='Add Skill'/></body></html>");
resp.end();
}
function getSkill(req, resp){
}
function get404(req, resp){
resp.writeHead(404, "404", {"Content-Type" : "text/html" });
resp.write("<html><body>404</body></html>");
resp.end();
}
http.createServer(function(req, resp){
if(req.method == 'GET'){
if(req.url === "/"){
console.log("hello get");
getLogin(req, resp);
}
else
get404(req, resp);
}
else if(req.method == 'POST'){
var data = '';
if(req.url === "/home"){
req.on('data', function(chunk) {
data += chunk;
console.log("hello post");
});
req.on('end', function() {
// parse the data
getHome(req, resp)
});
}
else{
console.log("error");
}
}
else if(req.method == 'PUT'){
getSkill(req, resp);
}
}).listen(port);
All I need is a PUT request on 'ADD SKILL' button in my response. I am not using 'Request' or 'Express' modules. Any suggestions how to go forward with PUT request ?