Initial project
This commit is contained in:
11
src/app.ts
Normal file
11
src/app.ts
Normal 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!');
|
||||
});
|
Reference in New Issue
Block a user