Skip to content

Commit c787a6d

Browse files
committed
created express app
1 parent d1254fd commit c787a6d

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

server/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const express = require('express');
2+
const app = express();
3+
4+
app.get('/', (req, res) => {
5+
res.send({ hi: 'there' });
6+
});
7+
8+
app.listen(5000);

0 commit comments

Comments
 (0)