Node.jsのフレームワークExpressで「Hello world」 - Tomcky's blog

プロジェクト用のディレクトリ作成。 $ mkdir my-app $ cd my-app npm init で package.json を生成。 $ npm init expressのインストール。 $ npm install express --save index.js の作成。 const express = require('express') const app = express() app.get('/', (req, res) => res.send('Hello Express!')) app.liste…