Getting Started with Create React App
This project was bootstrapped with Create React App.
key useful changes
deploy it on different server
By default the web app is localhost:4200
the backend is localhost:8080
if you want to deploy them at different server instead of localhost
you should change the backend's server layer url in the front end's constants.js file
in the backend you should change the cross origin url which is where the front end send all the request
to be more specific in the resoure file such as TodoJpaResource change the @CrossOrigin(origins ="http://localhost:4200")
if you want to create your own user
you should first change the rawpassword to your password and choose one of the password generated in the BcryptEncoderTest
and then copy one of them and put it in the JwtInMemoryUserDetailsService document in the back end
Available Scripts
In the project directory, you can run:
npm start
Runs the app in the development mode.
Open http://localhost:4200 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
npm test
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
npm run build
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.
npm run eject
Note: this is a one-way operation. Once you eject, you can't go back!
If you aren't satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use eject. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
Learn More
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
Code Splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
Analyzing the Bundle Size
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
Making a Progressive Web App
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
Advanced Configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
Deployment
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
npm run build fails to minify
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
npm add axios
This would enable you to make connection between the front-end and the back-end
You can find more information about axios which is a PROMISE based HTTP client for browser here[https://github.com/axios/axios]
npm add formik
This enable you to use the formik to create a table instead of hard code one
this is the document of how to use it [https://formik.org/docs/overview]
npm add moment
enable you to get a more formated date representation
this is the document of how to use it[https://momentjs.com/]