Friday, 26 August 2016

Import HTML Page in Node.js

# Here is the Simple code to import HTML file inside node.js code


/**
 * Created by Anand Dwivedi on 8/26/2016.
 */

var express=require('express');
var path =require('path');
var app =express();


app.get('/',function(request,response){

    response.sendFile('index.html',{root:path.join(__dirname,'')});
});


app.listen(1337,function(){
    console.log('Server Started ');
});

No comments:

Post a Comment