Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/renatorib/next-jph
- Owner: renatorib
- Created: 2017-03-14T04:36:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-17T22:39:37.000Z (over 7 years ago)
- Last Synced: 2024-08-01T00:39:08.141Z (4 months ago)
- Topics: jsonplaceholder, nextjs, react, redux
- Language: JavaScript
- Homepage:
- Size: 77.1 KB
- Stars: 34
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-nextjs - Next JPH - JsonPlaceholder sample app made with Next.js. (Apps)
- fucking-awesome-nextjs - Next JPH - JsonPlaceholder sample app made with Next.js. (Apps)
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
```