import React from 'react' import Link from 'next/link' import Router from 'next/router' import { format } from 'url' let counter = 1 export default class Index extends React.Component { static getInitialProps ({ res }) { if (res) { return { initialPropsCounter: 1 } } counter++ return { initialPropsCounter: counter } } reload () { const { pathname, query } = Router Router.push(format({ pathname, query })) } incrementStateCounter () { const { url } = this.props const currentCounter = url.query.counter ? parseInt(url.query.counter) : 0 const href = `/?counter=${currentCounter + 1}` Router.push(href, href, { shallow: true }) } render () { const { initialPropsCounter, url } = this.props return (

This is the Home Page

About

"getInitialProps" ran for "{initialPropsCounter}" times.

Counter: "{url.query.counter || 0}".

) } }