15 lines
129 B
Bash
15 lines
129 B
Bash
#!/usr/bin/env bash
|
|
|
|
|
|
rm -rf myreactapp
|
|
|
|
set -ex
|
|
|
|
npx create-react-app myreactapp
|
|
|
|
pushd myreactapp
|
|
npm i -d
|
|
npm start
|
|
|
|
popd
|