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

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.

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