mirror of
https://github.com/jlengrand/sample-node-api.git
synced 2026-03-10 08:41:23 +00:00
7 lines
142 B
JavaScript
7 lines
142 B
JavaScript
const app = require("./app");
|
|
|
|
const port = 3000;
|
|
|
|
app.listen(port, () => {
|
|
console.log(`starter listening on http://localhost:${port}`)
|
|
}); |