Install nodejs
sudo apt install nodejs
firstly, install npm
sudo apt install npm
in addition you can use npm install -g npm
to update npm version
and then, use n-npm to update nodejs packages
sudo npm install -g n
sudo n stable
You can check node-installation-guide to install specific version
Also this answer is useful
sudo apt-get install npm
npm install npm@latest -g
npm i create-react-app
or
sudo npm i create-react-app
for higher permission.
npx create-react-app todos
cd myapp
npm start
Find more on Create React App also you can check React-Docs