initialize
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import express, { request } from 'express';
|
||||
|
||||
const app = express();
|
||||
const PORT = process.env.PORT || 3000;
|
||||
app.use(express.json())
|
||||
|
||||
app.listen(PORT, ()=>{
|
||||
console.log(`Running on Port: ${PORT}`)
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user