1 | const express = require('express') |
||
2 | |||
3 | const app = express() |
||
4 | |||
5 | |||
6 | app.listen(1000, function(){ |
||
7 | console.log('1000 ma setup') |
||
0 ignored issues
–
show
Debugging Code
introduced
by
![]() |
|||
8 | }) |
||
9 | |||
10 | |||
11 | require('./app') |