Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/renatorib/next-jph

:pencil: JsonPlaceholder sample app made with Next.js
https://github.com/renatorib/next-jph

jsonplaceholder nextjs react redux

Last synced: about 2 months ago
JSON representation

:pencil: JsonPlaceholder sample app made with Next.js

Awesome Lists containing this project

README

        

### What?
Next JPH is an example app made with [JsonPlaceholder](http://jsonplaceholder.typicode.com/) api, using [Next.js](http://github.com/zeit/next.js), [styled-components](http://github.com/styled-components/styled-components), [flow](http://github.com/facebook/flow) and [jest](http://github.com/facebook/jest).

*"JPH" is an acronym to **J**son**P**lace**h**older.*

**See the app running at `now`**: http://jph.now.sh

### Why?
This is a project I've made to learn more about the used stack.
Also, is a good reference to newcommers in these technologies.

Feel free to contribute if you find any mistake I've made, or if you want to improve the application.

## Development
First of all, install dependencies:
```sh
yarn
```

Run development server:
```sh
yarn dev
```
Then open http://localhost:3000

## Production Deployment
Next.js is production-ready framework with *server-side rendering* and *code-splitting* built-in.

Just run these commands:
```sh
yarn build
yarn start
```