This project was bootstrapped with Create React App.
This project includes an .eslintrc
file which contains the linting rules that the project must abide by.
Do not submit a pull request without running the linter, and fixing all errors and warnings.
It's recommended to use VSCode to work on YVideo. The project includes a .vscode
folder containing workspace settings that should take priority over the user settings when working on this code.
- This will unset Shift+Alt+F from the default VSCode formatting task, and re-bind it to the ESLint linting task for
.js
,.jsx
,.ts
, and.tsx
files only
- Selected Settings:
- Auto-fix on save
- Package Manager: npm
- Lint Task Enabled
- Render all whitespace (We use tabs, not spaces)
- and more..
CSS Formatter
- by Martin AeschlimannDotENV
- by mikesteadES7 React/Redux/GraphQL/React-Native snippets
- by dsznajderESLint
- by Dirk BaeumerRedux DevTools
- by Jingkaistyled-components-snippets
- by Jon Wheelervscode-styled-components
- by Julien Poissonnier
Github Pull Requests
- by GitHubGitLens -- Git supercharged
- by Eric AmodioMarkdown Preview Github Styling
- by Matt Biernervscode-icons
- by VSCode Icons Team
@builtin TypeScript and JavaScript Language Features
- See next section
VSCode comes with TypeScript validation built-in. Since TypeScript is a super-set of JavaScript, it also validates JavaScript. Sometimes, this results in clashing when using a linter like ESLint, as we do in this project. In order to get VSCode to cooperate, you may have to disable a built in JS/TS validation tool.
-
Type the following into the search bar in the extensions tab:
@builtin TypeScript and JavaScript Language Features
-
Disable the extension
Note: It's recommended only to disable the extension in the workspace only, so it doesn't affect your other projects.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 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.
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.
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.
REACT_APP_YVIDEO_SERVER
- Set to needed server domainREACT_APP_STALE_TIME
- Timeout in milliseconds for network requestsREACT_APP_RECAPTCHA_SITEKEY
- reCAPTCHA secret key for site
If needed, set these variables as outlined in the .env.example file For development, a .env.development file is needed.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.