Skip to content
Snippets Groups Projects
index.ts 186 B
Newer Older
import express from 'express';
import { json } from 'body-parser';

const app = express()
app.use(json())

app.listen(3000, () => {
    console.log('server is listening on port 3000')
})