All Projects โ†’ CodementorIO โ†’ Nextjs Redux Starter

CodementorIO / Nextjs Redux Starter

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

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Nextjs Redux Starter

Next Go
Production ready blog + boilerplate for Next.js 3.X
Stars: โœญ 254 (-1.17%)
Mutual labels:  express, nextjs, ssr, styled-components
Next Blog Firestore
Example of blog built with React, Next.js, Firebase Firestore, Styled-Component, Mobx State Tree and other cool technologies
Stars: โœญ 219 (-14.79%)
Mutual labels:  nextjs, ssr, styled-components
Pizzaql
๐Ÿ• Modern OSS Order Management System for Pizza Restaurants
Stars: โœญ 631 (+145.53%)
Mutual labels:  nextjs, ssr, styled-components
gbkel-portfolio
๐Ÿ’Ž My personal website that's mainly powered by Next.js, my own style guide and a lot of other technologies.
Stars: โœญ 12 (-95.33%)
Mutual labels:  styled-components, ssr, nextjs
Oh My Fullstack
๐Ÿš€ Full stack web application skeleton (Next.js, Redux, RxJS, Immutable, Express)
Stars: โœญ 99 (-61.48%)
Mutual labels:  nextjs, starter-kit, ssr
Reeakt
A modern React boilerplate to awesome web applications
Stars: โœญ 116 (-54.86%)
Mutual labels:  express, ssr, styled-components
Razzle Material Ui Styled Example
Razzle Material-UI example with Styled Components using Express with compression
Stars: โœญ 117 (-54.47%)
Mutual labels:  express, ssr, styled-components
Hackathon Starter Kit
A Node-Typescript/Express Boilerplate with Authentication(Local, Github, Facebook, Twitter, Google, Dropbox, LinkedIn, Discord, Slack), Authorization, and CRUD functionality + PWA Support!
Stars: โœญ 242 (-5.84%)
Mutual labels:  express, starter-kit
ultimate-backend-dashboard
ultimate react ssr starter kit is a boilerplate strapped with Apollo graphql support and alot of goodies based on FusionJS
Stars: โœญ 19 (-92.61%)
Mutual labels:  ssr, starter-kit
react-easy-ssr
๐Ÿ”ฅ React Starter Project with Webpack 5, Babel 7, TypeScript, Redux-saga, Styled-components, React-jss, Split code, Server Side Rendering.
Stars: โœญ 31 (-87.94%)
Mutual labels:  styled-components, ssr
awrora-starter
Landing page template built with one of most popular javascript library Vue.JS, Vuetify (Material Design) and Nuxt.JS with SSR.
Stars: โœญ 38 (-85.21%)
Mutual labels:  ssr, starter-kit
nextjs-admin-template
Free admin dashboard template based on Next.Js with @paljs/ui component package
Stars: โœญ 266 (+3.5%)
Mutual labels:  styled-components, nextjs
nextjs-blog-starter-kit
NextJS Blog + Contentful Typescript Starter kit with Static Export ๐Ÿš€
Stars: โœญ 56 (-78.21%)
Mutual labels:  nextjs, starter-kit
Ssr
React Server-Side Rendering Example
Stars: โœญ 226 (-12.06%)
Mutual labels:  express, ssr
nebuchadnezzar
on the way to cleanest react architechture
Stars: โœญ 15 (-94.16%)
Mutual labels:  styled-components, starter-kit
React Ssr News
Server Side Rendering for React demo project
Stars: โœญ 213 (-17.12%)
Mutual labels:  express, ssr
Connext Js
A middleware and route handling solution for Next.js.
Stars: โœญ 211 (-17.9%)
Mutual labels:  express, nextjs
personal-blog
โœ๏ธ ไธชไบบๆŠ€ๆœฏๅšๅฎข
Stars: โœญ 79 (-69.26%)
Mutual labels:  styled-components, nextjs
RocketLaunches
Rocket launches, a simple site to let you know what is the next rocket launch.
Stars: โœญ 13 (-94.94%)
Mutual labels:  styled-components, nextjs
currency-converter
๐Ÿ’ฐ Easily convert between 32 currencies
Stars: โœญ 16 (-93.77%)
Mutual labels:  styled-components, nextjs

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].