I have to dev an ReactJS App on a specific computer which don't have any Internet access.
I used an Internet computer to try ReactJS. I followed this installation :
https://facebook.github.io/react/docs/installation.html
npm install -g create-react-app
create-react-app hello-world
cd hello-world
npm start
It downloaded me a lot of JS lib, but it worked ! Got my App and can dev.
Problem is, that without internet access, npm is not working to create my React seed. I have no idea how to install React without internet access.
My goal is to implement an ReactJS app, with the lightest JS lib. I really have to make an "small app".
Is there any solutions ? Transfer file from PC A -> PC B is, obv, not working.
Thanks :)