npm start
は npm run start
のショートハンドです
yarn start
と npm start
はまったく同じ挙動をします
package.json の中身はどうなっていますか ?
ぼくの手元では次のようになっているのですが、 scripts
の下にある start
で定義されているコマンドが npm start
で実際に動くものです
json
1{
2 "name": "sample",
3 "version": "0.1.0",
4 "private": true,
5 "devDependencies": {
6 "react-native-scripts": "1.8.1",
7 "jest-expo": "23.0.0",
8 "react-test-renderer": "16.0.0"
9 },
10 "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
11 "scripts": {
12 "start": "react-native-scripts start",
13 "eject": "react-native-scripts eject",
14 "android": "react-native-scripts android",
15 "ios": "react-native-scripts ios",
16 "test": "node node_modules/jest/bin/jest.js --watch"
17 },
18 "jest": {
19 "preset": "jest-expo"
20 },
21 "dependencies": {
22 "expo": "^23.0.4",
23 "react": "16.0.0",
24 "react-native": "0.50.3"
25 }
26}
package.json の中身が近しいものでない場合、 Node.js のバージョンを LTS の最新などに更新してやりなおしてみてください
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/12/28 13:44