React
Frameworks and Libraries
Frameworks and libraries are (pretty much) necessary for full-scale web applications. These frameworks and libraries make it easier for developers to create reusable web components and use other, pre-written components.
Getting Started with React
- Install Node (more specifically, only npm is necessary but Node will be used in future sections).
- In your command prompt or terminal, run
npm install -g create-react-app
. - In your projects directory, run
create-react-app new-dir-name
where new-dir-name is the name of the app. cd new-dir-name
npm start
Note: If you already have npm installed, make sure it is updated to the most recent version.
If you ran all the steps correctly, an application should be running at http://localhost:3000/.