Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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
)
```