added 2 new root folders
This commit is contained in:
20
server-node/index.js
Normal file
20
server-node/index.js
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
import api from './routes/api/index.js';
|
||||
|
||||
import express from 'express';
|
||||
const app = express();
|
||||
const PORT = 8080;
|
||||
|
||||
// Static Middleware
|
||||
app.use(express.static('./public'));
|
||||
|
||||
app.get('/', function (req, res, next) { // TODO: Use EJS?
|
||||
res.render('home.ejs');
|
||||
});
|
||||
|
||||
app.use("/api/", api);
|
||||
|
||||
app.listen(PORT, function (err) {
|
||||
if (err) console.log(err);
|
||||
console.log(`http://localhost:${PORT}`);
|
||||
});
|
||||
Reference in New Issue
Block a user