Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruslan-korneev/learn-react-pokemon
https://github.com/ruslan-korneev/learn-react-pokemon
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruslan-korneev/learn-react-pokemon
- Owner: ruslan-korneev
- Created: 2021-11-06T21:49:06.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-15T10:04:27.000Z (about 3 years ago)
- Last Synced: 2024-12-24T07:59:48.232Z (8 days ago)
- Language: CSS
- Size: 389 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Install node yarn and create-app start-app
```
# node 14.x installing !(dont use latest version)
sudo apt update
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs# yarn installing
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn# create-app and start
yarn create react-app app_name
cd app_name
yarn start
```