1
1

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 5 years have passed since last update.

【React Native】アプリ開発 〜プロジェクトのビルドから下準備まで〜

Last updated at Posted at 2020-01-05

開発環境

  • MacOS(シェルは.bash)
  • Atom(エディター) #もちろんどのエディターでもできるにはできるはず。
  • Expo

プロジェクトのビルド

まずは新規プロジェクトを作りたいディレクトリにcdとかmkdirとかして、

expo init

を実行。
いろいろ種類はあるけど、とりあえず

blank

を選択してみる。
名前とか要求されるので適当につける。
これで新規プロジェクトのディレクトリができている。

必要なライブラリを用意する

1.構文チェックのためのライブラリ

cd hogehoge #さっき作ったプロジェクト

して、

npm install --save-dev eslint babel-eslint eslint-config-airbnb
  • eslint
  • babel-eslint
  • eslint-config-airbnb

これでこの3つのライブラリがインストールできた。
コードの書式の誤りを怒ってくれるやつらしい。
これで記述ミスが減らせるはず。
--save-devは『開発環境にのみ必要ですよ。』って言っているぽい。

インストールできているかどうかは、プロジェクトのディレクトリにある
package.json
で管理されているので、それを確認すると、さっきインストールしたライブラリの記述が増えている。

"devDependencies": {
"@babel/core": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-preset-expo": "~8.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1"
},

こんな感じの記述が増えているはず。

さらに、

npm install eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react

で、

  • eslint-plugin-import
  • eslint-plugin-jsx-a11y  #Lではなくて数字の1なので注意。
  • eslint-plugin-react

も追加。

最終的にはこんな感じになっていればok。

package.json

{
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    "eject": "expo eject"
  },
  "dependencies": {
    "eslint-plugin-import": "^2.20.1",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-react": "^7.18.3",
    "eslint-plugin-react-hooks": "^1.7.0",
    "expo": "~36.0.0",
    "react": "~16.9.0",
    "react-dom": "~16.9.0",
    "react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
    "react-native-web": "~0.11.7"
  },
  "devDependencies": {
    "@babel/core": "^7.0.0",
    "babel-eslint": "^10.0.3",
    "babel-preset-expo": "~8.0.0",
    "eslint": "^6.8.0",
    "eslint-config-airbnb": "^18.0.1"
  },
  "private": true
}

2.Atomにパッケージをインストール

  • linter
  • linter-eslint

※依存関係に関するメッセージが出たら、それに追随するパッケージもインストール。

3. ".eslintrc.json"の作成・記述

さらに、プロジェクトのディレクトリの直下に .eslintrc.json というファイルを作って、

.eslintrc.json
{
  "extends": "airbnb",
  "plugins": [
    "react",
    "jsx-a11y",
    "import",
  ],
  "parser": "babel-eslint"
}

を記述。そして、Atomを再起動。
そうすれば構文エラーなどを怒ってくれるようになる。

今後怒られるルールを書き換える時にはこの記事とかも参考になりそう。
意外と知られてないっぽいMarkDownのリンクの書き方

次回はReactNativeでアプリ画面を作ってみようと思います。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?