Creating React App
- Chris Speed
- Dec 16, 2018
- 1 min read
Nodejs install on Kubuntu system
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
sudo apt install nodejs
sudo apt install npm
Server running on http://localhost:3000
Node upgrade on Kubuntu system
sudo apt-get update
sudo apt-get install build-essential checkinstall libssl-dev
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
npm install npm@latest -g
sudo npm cache clean -f
sudo npm install -g n
sudo n latest
Create React App
npx create-react-app my-app
cd my-app
npm start
Reference: https://github.com/facebook/create-react-app
Update React App
npm i npm-update-all -g
npm-update-all
Reference: https://github.com/facebook/create-react-app
Installing Eclipse on Kubutu
Comments