https://github.com/linguawork/reactjsprojects
React JavaScript projects
https://github.com/linguawork/reactjsprojects
Last synced: 4 months ago
JSON representation
React JavaScript projects
- Host: GitHub
- URL: https://github.com/linguawork/reactjsprojects
- Owner: linguawork
- Created: 2023-07-29T20:22:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-03T08:08:08.000Z (11 months ago)
- Last Synced: 2025-03-21T08:13:38.067Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### REACT JS PROJECTS
for vite projects:
```
npm create vite@latest my-vite-project
```
cd to folder:
```
npm i
npm run dev
```
To start a React project with JavaScript (JS), use the following command:
```
npx create-react-app my-app
```
npx: Runs the Create React App tool without globally installing it.
create-react-app: The tool used to bootstrap React projects.
my-app: The name of your project folder.
```
cd my-app
```
```
npm start
```
The project folder: "review" contains hook components with links to Internet resources
Petr** contains the practicing context: reactjs + bootstrap. The readme file contains screenshot of an app and additional resources.