LoginSignup
0
0

More than 3 years have passed since last update.

WindowsOSでAngularプロジェクト作成

Last updated at Posted at 2020-02-10

node.jsをインストール

インストールされた確認
node -v

npm(Node package manager)をインストール

node.jsインストールする時同時にインストールされるし、インストールされた確認
npm -v

angularフレームワークをインストール

npm install -g @angular/cli

angularプロジェクトを作成

ng new your-project-name

プロジェクト ディレクトリに移動

cd your-project-name

ローカルマシン上で アプリを実行する

ng serve

ウェブブラウザに次のアドレスを入力

http://localhost:4200/

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