Skip to content

lkhoony/nextjs-redux-starter

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

95 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Next.js redux starter

An opinionated Next.js starter kit with Express, Redux, styled-components, and react-testing-library.

Build Status JavaScript Style Guide Greenkeeper badge

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.

Features

Getting started

git clone https://github.com/CodementorIO/nextjs-redux-starter my-project
cd my-project
yarn install
yarn start

Then open http://localhost:3100/ to see your app.

Deployment

After npm run build finished, run

yarn serve

If you prefer using now, just modify now.json config.

Structure overview

β”œβ”€β”€ README.md
β”œβ”€β”€ next.config.js
β”œβ”€β”€ package.json
β”œβ”€β”€ pages
β”‚Β Β  β”œβ”€β”€ _app.js
β”‚Β Β  β”œβ”€β”€ _document.js
β”‚Β Β  β”œβ”€β”€ about.js
β”‚Β Β  └── index.js
β”œβ”€β”€ routes.js
β”œβ”€β”€ server
β”‚Β Β  └── index.js
β”œβ”€β”€ src
β”‚Β Β  β”œβ”€β”€ actions
β”‚Β Β  β”‚Β Β  └── repos.js
β”‚Β Β  β”œβ”€β”€ components
β”‚Β Β  β”‚Β Β  └── SearchResults.js
β”‚Β Β  β”œβ”€β”€ config.js
β”‚Β Β  β”œβ”€β”€ containers
β”‚Β Β  β”‚Β Β  └── SearchRepoContainer.js
β”‚Β Β  β”œβ”€β”€ libs
β”‚Β Β  β”‚Β Β  └── github.js
β”‚Β Β  β”œβ”€β”€ reducers
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ index.js
β”‚Β Β  β”‚Β Β  └── repos.js
β”‚Β Β  β”œβ”€β”€ store
β”‚Β Β  β”‚Β Β  └── createStore.js
β”‚Β Β  └── test
β”‚Β Β      β”œβ”€β”€ components
β”‚Β Β      β”‚Β Β  └── SearchResults.test.js
β”‚Β Β      └── test-utils.js
└── yarn.lock

About

Next.js + Redux + styled-components + Express = πŸ˜‡

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%