0
0

More than 1 year has passed since last update.

Node.jsを用いて1分でWebサーバをローカルに立てる方法

Posted at

開発環境
OS:Windows系
node.jsがインストール済み前提

やること
1.winowsキー+Rの検索窓でcmdを入力し、cmd起動
2.cdでウェブサイトのファイルを置きたい場所に移動

カレントディレクトリにファイルが作成されてしまうので、注意

3.以下を投入

cmd
>npx express-generator myExpressApp --view ejs
>cd myExpressApp && npm install
>npm start
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0