From de8ecbbe1972619917854c491ea34e7b5a160df1 Mon Sep 17 00:00:00 2001 From: Theodore Vorillas Date: Tue, 3 Oct 2017 08:58:26 +0300 Subject: [PATCH] Added Fastify example (#3034) --- examples/custom-server-fastify/README.md | 33 +++++++++++++++++++ examples/custom-server-fastify/package.json | 15 +++++++++ examples/custom-server-fastify/pages/a.js | 1 + examples/custom-server-fastify/pages/b.js | 1 + examples/custom-server-fastify/pages/index.js | 9 +++++ examples/custom-server-fastify/server.js | 29 ++++++++++++++++ 6 files changed, 88 insertions(+) create mode 100644 examples/custom-server-fastify/README.md create mode 100644 examples/custom-server-fastify/package.json create mode 100644 examples/custom-server-fastify/pages/a.js create mode 100644 examples/custom-server-fastify/pages/b.js create mode 100644 examples/custom-server-fastify/pages/index.js create mode 100644 examples/custom-server-fastify/server.js diff --git a/examples/custom-server-fastify/README.md b/examples/custom-server-fastify/README.md new file mode 100644 index 00000000..12055aaf --- /dev/null +++ b/examples/custom-server-fastify/README.md @@ -0,0 +1,33 @@ +[![Deploy to now](https://deploy.now.sh/static/button.svg)](https://deploy.now.sh/?repo=https://github.com/zeit/next.js/tree/master/examples/custom-server-fastify) + +# Custom Fastify Server example + +## How to use + +Download the example [or clone the repo](https://github.com/zeit/next.js): + +```bash +curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/custom-server-fastify +cd custom-server-fastify +``` + +Install it and run: + +```bash +npm install +npm run dev +``` +Fastify +Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download)) + +```bash +now +``` + +## The idea behind the example + +Most of the times the default Next server will be enough but sometimes you want to run your own server to customize routes or other kind of the app behavior. Next provides a [Custom server and routing](https://github.com/zeit/next.js#custom-server-and-routing) so you can customize as much as you want. + +Because the Next.js server is just a node.js module you can combine it with any other part of the node.js ecosystem. in this case we are using [Fastify](https://github.com/fastify/fastify) to build a custom router on top of Next. + +The example shows a server that serves the component living in `pages/a.js` when the route `/b` is requested and `pages/b.js` when the route `/a` is accessed. This is obviously a non-standard routing strategy. You can see how this custom routing is being made inside `server.js`. diff --git a/examples/custom-server-fastify/package.json b/examples/custom-server-fastify/package.json new file mode 100644 index 00000000..0ad8ed7a --- /dev/null +++ b/examples/custom-server-fastify/package.json @@ -0,0 +1,15 @@ +{ + "name": "custom-server-fastify", + "version": "1.0.0", + "scripts": { + "dev": "node server.js", + "build": "next build", + "start": "NODE_ENV=production node server.js" + }, + "dependencies": { + "fastify": "^0.29.2", + "next": "latest", + "react": "^15.4.2", + "react-dom": "^15.4.2" + } +} diff --git a/examples/custom-server-fastify/pages/a.js b/examples/custom-server-fastify/pages/a.js new file mode 100644 index 00000000..16eb9898 --- /dev/null +++ b/examples/custom-server-fastify/pages/a.js @@ -0,0 +1 @@ +export default () =>
a
diff --git a/examples/custom-server-fastify/pages/b.js b/examples/custom-server-fastify/pages/b.js new file mode 100644 index 00000000..3791f48b --- /dev/null +++ b/examples/custom-server-fastify/pages/b.js @@ -0,0 +1 @@ +export default () =>
b
diff --git a/examples/custom-server-fastify/pages/index.js b/examples/custom-server-fastify/pages/index.js new file mode 100644 index 00000000..d044fc1e --- /dev/null +++ b/examples/custom-server-fastify/pages/index.js @@ -0,0 +1,9 @@ +import React from 'react' +import Link from 'next/link' + +export default () => ( + +) diff --git a/examples/custom-server-fastify/server.js b/examples/custom-server-fastify/server.js new file mode 100644 index 00000000..f34ba0d4 --- /dev/null +++ b/examples/custom-server-fastify/server.js @@ -0,0 +1,29 @@ +const fastify = require('fastify') +const Next = require('next') + +const port = parseInt(process.env.PORT, 10) || 3000 +const dev = process.env.NODE_ENV !== 'production' +const app = Next({ dev }) +const handle = app.getRequestHandler() + +app.prepare() +.then(() => { + const server = fastify() + + server.get('/a', (req, res) => { + return app.render(req.req, res.res, '/b', req.query) + }) + + server.get('/b', (req, res) => { + return app.render(req.req, res.res, '/b', req.query) + }) + + server.get('/*', (req, res) => { + return handle(req.req, res.res) + }) + + server.listen(port, (err) => { + if (err) throw err + console.log(`> Ready on http://localhost:${port}`) + }) +})