Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devmahmud/nextjs-redux-boilerplate
Next.js redux boilerplate using redux, react-redux, redux-thunk, next-redux-wrapper and redux-devtools-extension
https://github.com/devmahmud/nextjs-redux-boilerplate
nextjs-redux nextjs-redux-boilerplate react react-redux redux-store redux-thunk
Last synced: 3 months ago
JSON representation
Next.js redux boilerplate using redux, react-redux, redux-thunk, next-redux-wrapper and redux-devtools-extension
- Host: GitHub
- URL: https://github.com/devmahmud/nextjs-redux-boilerplate
- Owner: devmahmud
- License: other
- Created: 2020-06-22T06:27:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T10:32:11.000Z (about 2 years ago)
- Last Synced: 2023-03-04T00:19:36.998Z (almost 2 years ago)
- Topics: nextjs-redux, nextjs-redux-boilerplate, react, react-redux, redux-store, redux-thunk
- Language: JavaScript
- Size: 1.62 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
`Next.js redux boilerplate using redux, react-redux, redux-thunk, next-redux-wrapper and redux-devtools-extension`
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
### Project Structure
```
├── pages
│ ├── _app.js
│ └── index.js
└── store
├── actions
│ └── postAction.js
├── reducers
│ ├── index.js
│ └── postReducer.js
├── store.js
└── types.js
```