Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmg1989/nextjs-redux-immutable-todo
nextjs-redux-immutable-todo
https://github.com/pmg1989/nextjs-redux-immutable-todo
Last synced: about 22 hours ago
JSON representation
nextjs-redux-immutable-todo
- Host: GitHub
- URL: https://github.com/pmg1989/nextjs-redux-immutable-todo
- Owner: pmg1989
- License: mit
- Created: 2018-03-07T08:16:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-18T07:18:10.000Z (over 5 years ago)
- Last Synced: 2024-05-21T07:41:57.871Z (6 months ago)
- Language: CSS
- Homepage:
- Size: 1.14 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Next.js redux starter
An opinionated Next.js starter kit with Express, Redux, Immutable, Less, and Jest.## About
Next.js is an awesome and minimalistic framework to make a modern universal react app. However, there're times that we need a bit more features to build a complex SPA. That's why this project is born.## Getting started
```
git clone https://github.com/pmg1989/nextjs-redux-immutable-todo.git
cd nextjs-redux-immutable-todo
yarn install
yarn start
```Then open `http://localhost:3000/` to see your app.
## Structure overview
```
├── README.md
├── next.config.js
├── package.json
├── pages
│ ├── _document.js
│ ├── about.js
│ └── index.js
├── routes.js
├── server
│ └── index.js
├── src
│ ├── actions
│ │ └── index.js
│ ├── components
│ │ └── index.js
│ ├── config.js
│ ├── containers
│ │ └── index.js
│ ├── reducers
│ │ ├── index.js
│ ├── store
│ │ └── createStore.js
└── yarn.lock
```