Initialization steps
Closed this issue · 2 comments
Ash9311 commented
can someone please tell me how to setup and run the project in our local
donatso commented
hi,
you'll have to serve root folder as static. I use http-server
but you can do it with express as well, if it is more convenient for you.
- install express.js
- create js file in root of the project with this code
var express = require('express'); var server = express(); server.use(express.static(__dirname)); server.listen(8080);
- run it
- give yourself a kiss