Node.js express-generator でWebアプリの雛形を作成する 2021-05-06

インストール

$ npm install express $ npm install express-session

雛形の作成

$ npx express-generator

package.jsonに「express-session」を追加。

$ npm install express-session

必要なモジュールのインストール

$ npm install

雛形として作成されたWebアプリの実行

$ npm start

以下にアクセスして実行確認

http://ip_address:3000/

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →

tags: Node.js express-generator