0
1

More than 3 years have passed since last update.

【Gatsby.js】ポートフォリオ作成_環境準備

Posted at

Node.js をインストール

// nodeをインストール
brew install node

インストール後、バージョンチェック

// nodeのバージョンチェック
node -v
v12.16.3

Gatsby.js をインストール

// gatsby をインストール
npm i -g gatsby-cli

// gatsby のバージョンチェック
gatsby -v
Gatsby CLI version: 2.12.29

// プロジェクトの雛形を生成(TypeScript)
gatsby new gatsby_sample01 https://github.com/haysclark/gatsby-starter-typescript

スタータのひな形は以下にある。
https://www.gatsbyjs.org/starters/?v=2

0
1
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
1