-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added npx Configure React Cheatsheet #507
Open
shaantanu9
wants to merge
1
commit into
onecompiler:master
Choose a base branch
from
shaantanu9:adding-npx-configure-react-commands
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
title: Configure-React CheatSheet | ||
description: Package that Help Configure React App with industry standard Faster. | ||
created: 2022-10-28 | ||
--- | ||
|
||
## Table of Contents | ||
|
||
- [Configure-React CheatSheet for Developers](#configure-react-cheatsheet-for-developers) | ||
- [Create React Cluster App (Multiple React App in One Project) Build new React App in Second](#create-react-cluster-app-multiple-react-app-in-one-project-build-new-react-app-in-second) | ||
- [React Commands to Configure React App Faster (Specially for Beginners)](#react-commands-to-configure-react-app-faster-specially-for-beginners) | ||
|
||
# Configure-React CheatSheet for Developers | ||
|
||
|
||
## Create React Cluster App (Multiple React App in One Project) Build new React App in Second | ||
Watch this video to create React Cluster App (Multiple React App in One Project) | ||
|
||
| Command | Description | | ||
| :-------: | :-----------: | | ||
|`npx configure-react create-cluster <clustername>`|Create Big React Project with Tailwind, React Router Dom, Chakra UI, Context API, Redux, Redux Thunk, Redux Saga, Redux Persist, Utils, Axios | | ||
|`npx configure-react cluster-app <projectname>`|Create Cluster App with Tailwind, React Router Dom, Chakra UI, Context API, Redux, Redux Thunk, Redux Saga, Redux Persist, Utils, Axios | | ||
|`npx configure-react ic <package-name>`|Install package in Cluster App | | ||
|`npx configure-react help`|Display help for command | | ||
|
||
For more information about the package visit [Configure-React](https://www.npmjs.com/package/configure-react) | ||
Watch the video on [Youtube](https://www.youtube.com/watch?v=2MO1_mCXuds&t=3s) | ||
|
||
**[🔼Back to Top](#table-of-contents)** | ||
|
||
|
||
## React Commands to Configure React App Faster (Specially for Beginners) | ||
| Command | Description | | ||
| :-------: | :-----------: | | ||
| `npx configure-react axios . ` | Install axios and create a folder named `api` and create a file named `axios.js` login.js, register.js, post.js getdata.js | | ||
|`npx configure-react react-redux-app <projectname>`| Install react-redux and create a folder named `redux` and create a file named `store.js` and `actions.js` and `reducers.js` and `types.js` | | ||
|`npx configure-react tailwind . `|Configure Exsisting React App with Tailwind Configuration to use Tailwind class | | ||
|`npx configure-react browser-router . `|Configure Exsisting React App with React Router Dom Configuration to use React Router Dom also create a folder named `routes` and create a file named `index.js` and `AppRouter.js` and edit `App.js` file and index.js file | | ||
|`npx configure-react chakra-ui . `|Configure Exsisting React App with Chakra UI Configuration to use Chakra UI also edit `index.js` file to wrap the App with ChakraProvider | | ||
|`npx configure-react context-api . `|Configure Exsisting React App with Context API Configuration to use Context API also create a folder named `context` and create a file named `context.js` and `reducer.js` and edit `App.js` file | | ||
|`npx configure-react redux . `|Configure Exsisting React App with Redux Configuration to use Redux also create a folder named `redux` and create a file named `store.js` and `actions.js` and `reducers.js` and `types.js` | | ||
|`npx configure-react utils . `|Configure Exsisting React App with Utils Configuration to use Utils also create a folder named `utils` and create a file named `utils.js` | | ||
|`npx configure-react redux-thunk . `|Configure Exsisting React App with Redux Thunk Configuration to use Redux Thunk also create a folder named `redux` and create a file named `store.js` and `actions.js` and `reducers.js` and `types.js` | | ||
|`npx configure-react redux-saga . `|Configure Exsisting React App with Redux Saga Configuration to use Redux Saga also create a folder named `redux` and create a file named `store.js` and `actions.js` and `reducers.js` and `types.js` | | ||
|`npx configure-react redux-persist . `|Configure Exsisting React App with Redux Persist Configuration to use Redux Persist also create a folder named `redux` and create a file named `store.js` and `actions.js` and `reducers.js` and `types.js` | | ||
|`npx configure-react refresh . `|Refresh the files and update the files if any changes in the package | | ||
|`npx configure-react help`|Display help for command | | ||
|
||
|
||
**[🔼Back to Top](#table-of-contents)** | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is this link pointing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are 2 external links in the file,
1st is pointing to the npm directory of that package.
2nd one is pointing to the youtube video that guides the user on how to use the command mentioned in the file.
Other are there to link the table of content only.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Above that you are asking is there to link the table of content to the respected content, written in the same file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@onecompiler-ops please let me know what changes is needed, please accept and approve the pull request
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@onecompiler-ops But please check commands are working and you can also go through the video for the same https://www.youtube.com/watch?v=2MO1_mCXuds&t=3s
Please support me, by this open-source project of mine can grow, and I will keep improving it more, with time, As the community grows it will help the package also in both ways.