Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joannajjliu/reacttutorial-indecisionapp
Sections 03 to 08 - Complete React Developer Udemy Course by Andrew Mead
https://github.com/joannajjliu/reacttutorial-indecisionapp
Last synced: 5 days ago
JSON representation
Sections 03 to 08 - Complete React Developer Udemy Course by Andrew Mead
- Host: GitHub
- URL: https://github.com/joannajjliu/reacttutorial-indecisionapp
- Owner: joannajjliu
- Created: 2020-03-29T23:29:19.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T09:01:36.000Z (about 2 years ago)
- Last Synced: 2024-12-07T19:07:13.153Z (2 months ago)
- Language: JavaScript
- Homepage: https://react-course-jl-indecision-app.herokuapp.com/
- Size: 646 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HelloReactTutorial
Section 03 - Complete React Developer Udemy Course by Andrew Mead
The following uses yarn install to install dependencies from package.json into a node_module folder.
Additionally, global modules need to be installed (not best practice): babel-cli and live-server (optionally, live-server can also be run as an extension in vs code)Guidelines on running/ using the practice code:
the react file (live-server) can be run from the public folder, or public/index.html
index.html is connected to file, public/scripts/app.jsCode in public/scripts/app.js is translated into working ES5 code from js files in src/ or src/playground via babel.
The translation will work continuously by typing the following command into terminal
(This command will run the code in src/playground/visibilityToggle.js)
> babel src/playground/visibilityToggle.js --out-file=public/scripts/app.js --presets=env,react --watch---
- normalize.css dependency: removes default styling by web browsers and OS, allowing for consistent cross-browser styling