0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Vue3でWebアプリ開発 #0

Posted at

はじめに

フロントエンド開発未経験者です。
バックエンドに関しても、ほとんど初心者です。
そんな私がVueを用いたWebアプリ開発日記をここに書いていきます。
なお、Vue3+TypeScriptで開発を進めていきます。

準備

開発をするにあたって必要な準備をします。
#0では、プロジェクト作成直前まで行います。

NodeとNpmのインストール

Node.jsは、JavaScript実行環境です。(詳しくは、こちらから)
また、npmとは、Node.jsのパッケージ管理システムです。
どちらもWebアプリ開発をするには必須です。

それぞれ以下の公式サイトからダウンロード出来ます。
(トップページのダウンロードリンク1つでインストール出来ます。)
Node.js

インストール方法は、こちらをご参照ください。

vue-cliのインストール

Vue CLIとは、Vue.jsのプロジェクト作成やビルドなどができるコマンドラインツールです。
ターミナルで以下のコマンドを実行してください。
$npm install -g @vue/cli

最後に

これでVueを用いたWebアプリ開発を行う準備が出来ました。

次回は、実際にWebアプリを作成していきます。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?