Node.js

Node.jsサーバーを作成する

最後に、Nodeサーバーをインスタンス化するコードを書きます:

const port = 3000
app.listen(port, () => console.log(`Listening on port ${port}`))