Initial project

This commit is contained in:
2020-03-27 13:44:21 +08:00
commit 567de448b1
6 changed files with 646 additions and 0 deletions

11
src/app.ts Normal file
View File

@ -0,0 +1,11 @@
import express from 'express';
let app = express();
app.get('/', (req, res) => {
res.send('Hello World!')
});
app.listen(3000, () => {
console.log('Now listening on port 3000!');
});