https://github.com/4xxi/nextjs-skeleton
Boilerplate for start development React application with SSR based on Next.js.
https://github.com/4xxi/nextjs-skeleton
nextjs react redux redux-saga reselect webpack
Last synced: 2 months ago
JSON representation
Boilerplate for start development React application with SSR based on Next.js.
- Host: GitHub
- URL: https://github.com/4xxi/nextjs-skeleton
- Owner: 4xxi
- Created: 2018-02-06T11:26:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-06T12:25:39.000Z (over 8 years ago)
- Last Synced: 2025-03-05T04:42:14.965Z (over 1 year ago)
- Topics: nextjs, react, redux, redux-saga, reselect, webpack
- Language: JavaScript
- Size: 64.5 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 4xxi Next.js Skeleton
### Prerequisites
You should be install `node >= 8`, `yarn` and `docker` (if you want use docker in local development).
### Installing
You should be clone [repository](https://github.com/4xxi/nextjs-skeleton.git).
Intall dependencies
```
yarn
```
Run you application
```
yarn dev
```
Local server placed on [localhost:3000](localhost:3000).
Enjoy it!
If you want use Docker in local development:
```
docker build -t react-app .
docker run -d -p 3000:3000 react-app
```