An open API service indexing awesome lists of open source software.

https://github.com/swap76/reactjsbasics

This is a comprehensive guide for ReactJS beginners.
https://github.com/swap76/reactjsbasics

beginner docsify documentation reactjs

Last synced: 7 months ago
JSON representation

This is a comprehensive guide for ReactJS beginners.

Awesome Lists containing this project

README

          

# This repo aims to help newbies in ReactJS

reactjs-banner

---

![Last Commit](https://img.shields.io/github/last-commit/Swap76/ReactJSBasics?style=for-the-badge)
![Repository Size](https://img.shields.io/github/repo-size/Swap76/ReactJSBasics?color=blue&label=Repository%20Size&style=for-the-badge)
![Stars](https://img.shields.io/github/stars/Swap76/ReactJSBasics?style=for-the-badge)
![Forks](https://img.shields.io/github/forks/Swap76/ReactJSBasics?style=for-the-badge)
![Issues](https://img.shields.io/github/issues/Swap76/ReactJSBasics?style=for-the-badge)
![Pull Requests](https://img.shields.io/github/issues-pr/Swap76/ReactJSBasics?style=for-the-badge)

---

## Run this repo on your local server with docsify

To run this project with docsify, install the docsify cli:

```
npm i docsify-cli -g
```

Once the docsify cli is installed, run the following command:

```
docsify serve docs
```

Open http://localhost:3000 to view it in the browser.

## This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

```
npx create-react-app my-app
cd my-app
npm start
```

It will create a directory called my-app inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
```
my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
├── App.css
├── App.js
├── App.test.js
├── index.css
├── index.js
├── logo.svg
└── serviceWorker.js
```
No configuration or complicated folder structures, just the files you need to build your app.
Once the installation is done, you can open your project folder:
```
cd my-app
```
Inside the newly created project, you can run some built-in commands:
```
npm start
```
Runs the app in development mode.
Open http://localhost:3000 to view it in the browser.