1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-static-export
Tim Neutkens 18f8ab392a Merge branch 'master' into canary
# Conflicts:
#	examples/with-apollo/lib/initApollo.js
#	examples/with-apollo/package.json
#	examples/with-react-with-styles/package.json
#	examples/with-static-export/package.json
#	package.json
2017-11-05 11:01:59 +01:00
..
components Add with-static-export example (#2234) 2017-07-01 21:44:58 +02:00
pages Dropped isomorphic-fetch in examples in favor of isomorphic-unfetch. (#3230) 2017-11-04 15:05:16 +01:00
next.config.js Dropped isomorphic-fetch in examples in favor of isomorphic-unfetch. (#3230) 2017-11-04 15:05:16 +01:00
package.json Merge branch 'master' into canary 2017-11-05 11:01:59 +01:00
README.md Update README.md 2017-07-08 17:14:14 +05:30
server.js Ease running multiple examples at the same time with process.env.PORT (#2753) 2017-08-10 20:15:46 +02:00

Static export example

How to use

Download the example or clone the repo:

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

This example requires Node.js 8 or a later version.
(That's for the use of "async await" in the next.config.js.)

Install it and run:

npm install
npm run dev

The idea behind the example

This example show how to export to static HTML files your Next.js application fetching data from an API to generate a dynamic list of pages. This use a custom Express server in development to configure custom routing and then generate a map of pages to export for production.

When trying to run npm start it will build and export your pages into the out folder and serve them on localhost:5000.