express static html assets in folder with index code example
Example 1: node express server static files
var express = require('express');
var app = express();
var path = require('path');
//app.use(express.static(__dirname)); // Current directory is root
app.use(express.static(path.join(__dirname, 'public'))); // "public" off of current is root
app.listen(80);
console.log('Listening on port 80');
Example 2: static file
Static file is any content that can be delivered to an end user without
having to be generated, modified, or processed.