Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mbrsagor/reactredux
React redux simple task management app.
https://github.com/mbrsagor/reactredux
react redux redux-form redux-thunk
Last synced: 2 months ago
JSON representation
React redux simple task management app.
- Host: GitHub
- URL: https://github.com/mbrsagor/reactredux
- Owner: mbrsagor
- Created: 2020-03-05T17:54:32.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-21T15:43:07.000Z (3 months ago)
- Last Synced: 2024-10-22T02:56:49.641Z (3 months ago)
- Topics: react, redux, redux-form, redux-thunk
- Language: JavaScript
- Homepage:
- Size: 6.44 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React-Redux Task manager app
The following steps will walk you thru installation on a Mac. Linux should be similar. It's also possible to develop on a Windows machine, but I have not documented the steps. If you've developed the apps on Windows, you should have little problem getting up and running.
####
If below version is available it will be very easy to install and run the project in your local deve server.
- v14.4.0
- 6.14.8```
git clone https://github.com/mbrsagor/ReactRedux.git
cd ReactRedux
npm install
npm start
```Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.#### The project Features:
- Authentication token system:
- Registration system.
- Login system.
- Reset password.
- Backend API connection.
- Develop simple admin-template
- Frontend latest development with responsive, and SCSS how to work.###### Implement SCSS in new React version
```base
yarn add [email protected]
```If you already have scss and any error raise then you may replace and follow the command.
>NPM
```base
npm uninstall node-sass
npm install [email protected]
```
>Yarn
```base
yarn remove node-sass
yarn add [email protected]
```If react dev tools are installed and any error raise then you may replace and follow the code below.
```javascript
compose(
applyMiddleware(...middleware),
window.__REDUX_DEVTOOLS_EXTENSION__
? window.__REDUX_DEVTOOLS_EXTENSION__()
: (f) => f
)
```