rsnext/examples/with-overmind
Tim Neutkens a90a55545b
Deprecate Container usage (#8327)
* Remove Container from examples

* Update readme to reflect Container removal
2019-08-11 22:02:33 +02:00
..
components form handler example: Update deps and fix build from dep update (#6732) 2019-03-27 16:12:45 -04:00
overmind initial overmind example (#6548) 2019-03-12 12:42:42 +01:00
pages Deprecate Container usage (#8327) 2019-08-11 22:02:33 +02:00
package.json Update remaining examples to latest Next.js 2019-07-08 19:37:58 -04:00
README.md Remove deploy to now button from all examples (#7101) 2019-05-27 12:22:05 -07:00

Overmind example

How to use

Using create-next-app

Execute create-next-app with Yarn or npx to bootstrap the example:

npx create-next-app --example with-overmind with-overmind-app
# or
yarn create next-app --example with-overmind with-overmind-app

Download manually

Download the example:

curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-overmind
cd with-overmind

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Deploy it to the cloud with now (download)

now

Notes

Look at the comments for more information on how the application is structured. This is just one of several ways you can manage hydration and rehydration of state. It depends heavily on how you want to manage it, do code sharing between client and server etc. The exampled approach should give you the hooks and flexibility to get you started on your endeavour :-)