Untuk bisa menggunakan React JS, maka diperlukan runtime JavaScript bernama : Node.js, Dengan menginstall Node.js sudah tersedia NPM ( Node Package Manager ).
Berikut adalah cara install ReactJS di linux :
1. Download nodejs pada website node js, download versi linux
2. Install Node.js NPM
Jalankan perintah dibawah ini untuk melakukan installasi :
sudo apt-get install nodejs
sudo apt-get install npm
3. Install ReactJS
Sebelum melakukan installasi ReactJS, cek node.js dan npm sudah terinstall atau belum , dengan perintah dibawah ini :
npm --version
node --version
Setelah itu hapus cache npm dengan perintah :
npm cache clean --force
Kemudian install React app tool :
npm install -g create-react-app
Setelah itu baru buat project :
Sintak :
create-react-app {namaproject}
Contoh :
create-react-app belajarreact
maka akan ditampilkan layout seperti gambar dibawah :
Setelah selesai lalu jalankan perintah dibawah untuk masuk ke folder project:
cd belajarreact
npm start
hasilnya :
Kemudian buka browser ketik : http://localhost:3000