Skip to content

Latest commit

 

History

History
194 lines (154 loc) · 3.69 KB

install_mac.md

File metadata and controls

194 lines (154 loc) · 3.69 KB

インストール手順 Mac編

対象OS: macOS 10.12以降

2-4 Node.js のインストール

Homebrewがインストールされている場合

バージョン番号はどんどん上がるので一致してなくて良いです

brew -v
brew update
brew install nodejs
node -v

※ プロンプトは省略しました

Homebrewがインストールされてないる場合、Installerを利用

https://nodejs.org/ja/ から「最新版」をダウンロードしインストール

インストール後ターミナルでバージョンを確認、バージョン番号はどんどん上がるので一致してなくて良いです

node -v

※ プロンプトは省略しました

2-6 インストール用プロジェクトの作成

  • プロジェクトの作成
mkdir hello_react
cd hello_react
npm init -y

※ プロンプトは省略しました

  • package.jsonの変更
{
  "name": "hello_react",
  "version": "1.0.0",
  "description": "Hello React",
  "private": true,
  "main": "index.js",
  "scripts": {
    "start": "webpack-dev-server",
    "webpack": "webpack -d"
  },
  "keywords": [],
  "author": "",
  "license": "ISC"
}

2-7 npmパッケージのインストール

npm install react react-dom
npm install webpack webpack-cli webpack-dev-server --save-dev
npm install @babel/core @babel/preset-env @babel/preset-react --save-dev
npm install eslint eslint-loader eslint-plugin-react --save-dev
npm install css-loader style-loader babel-loader --save-dev

※ プロンプトは省略しました

2-8 確認用Reactコードの作成

  • ディレクトリー作成
mkdir src
mkdir public

※ プロンプトは省略しました

  • .babelrc

ファイル名は . (ドット)から始まるので注意して下さい

{
  "presets": ["@babel/preset-env", "@babel/preset-react"]
}
  • .eslintrc.json

ファイル名は . (ドット)から始まるので注意して下さい

{
  "env": {
    "browser": true,
    "es6": true
  },
  "parserOptions": {
    "sourceType": "module",
    "ecmaFeatures": {
      "experimentalObjectRestSpread": true,
      "jsx": true
    }
  },
  "extends": ["eslint:recommended", "plugin:react/recommended"],
  "plugins": ["react"],
  "rules": {
    "no-console": "off"
  }
}
  • webpack.config.js
module.exports = {
  entry: {
    app: "./src/index.js"
  },
  output: {
    path: __dirname + '/public/js',
    filename: "[name].js"
  },
    devServer: {
    contentBase: __dirname + '/public',
    port: 8080,
    publicPath: '/js/'
  },
  devtool: "eval-source-map",
  mode: 'development',
  module: {
    rules: [{
      test: /\.js$/,
      enforce: "pre",
      exclude: /node_modules/,
      loader: "eslint-loader"
    }, {
      test: /\.css$/,
      loader: ["style-loader","css-loader"]
    }, {
      test: /\.js$/,
      exclude: /node_modules/,
      loader: 'babel-loader'
     }]
  }
};
  • public/index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  <meta http-equiv="X-UA-Compatible" content="IE=Edge, chrome=1" />
  <title>React App</title>
</head>
<body>
  <div id="root"></div>
  <script type="text/javascript" src="js/app.js" charset="utf-8"></script>
</body>
</html>
  • src/index.js
import React from 'react'
import ReactDOM from 'react-dom'

ReactDOM.render(
  <h1>Hello, world!!</h1>,
  document.getElementById('root')
)
  • 確認
npm start

※ プロンプトは省略しました

ターミナルに webpack: Compiled successfully. が表示されたら ブラウザーで http://localhost:8080 をアクセス