const express = require('express') const app = express() const port = 30012 app.listen(port, function(error){ if(error) throw error console.log("Server created Successfully") }) app.use("/", express.static(__dirname))