Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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