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?

コマンド

0
Posted at

コマンド

Reactを触るにあたりnode.jsにてコマンドを打つことがあるため基礎的なものを記述

<# 一連の流れ #>
npm create vite@latest
npm install
npm run dev

<# nodeのバージョン管理・確認 #>
nvm list available
nvm install インストールするバージョン
nvm use 使うバージョン
node -v

<# git #>
git push -u origin main ※初回だけ必要
git init
git add .
git commit -m 変更内容の説明
git push

<# styled-componentsのインストール #>
npm install styled-components

<# React-iconsのインストール #>
npm install react-icons
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?