npm start
Runs the app in the development mode.
Open http://localhost:3030 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
These project is broken down by multiple directories which all a focus on solves a particular problem.
src/
|-- api/
|-- components/
|-- modules/
|-- app/
|-- home/
|-- profile/
The api directory houses all of the files needed to make REST api calls to our backend services. If you need to talk to the backend, that is where they will live.
These are generic components that should be reused through out modules. Think buttons, snackbars, and etc. You can think of this directory as our design/component system.
The module directory contains related feature contained functionality. They have an index file which will be main export and should normally be high level react component or a react route component. They may also contain style.css files needed to style react components.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment