Bootstrap server
This commit is contained in:
parent
1beb2f7462
commit
895dbbd060
5 changed files with 8087 additions and 0 deletions
9
server/server.js
Normal file
9
server/server.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import express from 'express';
|
||||
|
||||
const app = express();
|
||||
|
||||
app.get("/", (req, res) => {
|
||||
res.send("hello");
|
||||
});
|
||||
|
||||
app.listen(3000);
|
||||
Loading…
Add table
Add a link
Reference in a new issue