Hello, I just started learning Reactjs. I learning it from freecodecamp scrimba react tutorial. But I was wondering how I can add react into my local project. Like bootstrap we just add a CDN link. But in react website there is not any link. So, Please someone tell me how I can add react to my project:worried:
You can add react using cdn links:
1 Like
@JanShah thank you for your reply
The preferred method, however, is to use a command line and install react package from NPM (comes with Node.js run-time environment) or use NPX. You then have a command line tool called create-react-app
which does all the bundling, compression, etc and gives you your project structure automatically behind the scenes. Link to create-react-app
2 Likes
@vytautas-pilk Ok then I will try to do it…thanks