8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
import { app } from './server.js'
|
|
|
|
const port = 3000
|
|
|
|
app.listen(port, () => {
|
|
console.log(`Running in http://localhost:${port}`)
|
|
})
|