rsnext/examples/with-overmind
Connor Davis 3fa04620e7 Remove Deploy To Now buttons (#7126)
* Remove Deploy To Now buttons

* Remove remaining buttons
2019-04-24 10:53:58 +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 form handler example: Update deps and fix build from dep update (#6732) 2019-03-27 16:12:45 -04:00
package.json initial overmind example (#6548) 2019-03-12 12:42:42 +01:00
README.md Remove Deploy To Now buttons (#7126) 2019-04-24 10:53:58 +02: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 :-)