-
Notifications
You must be signed in to change notification settings - Fork 27.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add custom server example using Hapi
- Loading branch information
sfhardma
committed
Jan 9, 2017
1 parent
f3ee901
commit 3b70431
Showing
7 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
# Custom server using Hapi example | ||
|
||
## How to use | ||
|
||
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]: | ||
|
||
```bash | ||
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/custom-server-hapi | ||
cd custom-server-hapi | ||
``` | ||
|
||
Install it and run: | ||
|
||
```bash | ||
npm install | ||
npm run dev | ||
``` | ||
|
||
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 [Hapi](https://hapijs.com) 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`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
const { Readable } = require('stream') | ||
|
||
function pathWrapper (app, pathName, opts) { | ||
return function (hapiRequest, hapiReply) { | ||
return new Promise((resolve, reject) => { | ||
app.render(hapiRequest.raw.req, hapiRequest.raw.res, pathName, hapiRequest.query, opts) | ||
.catch(error => { | ||
reject(error) | ||
}) | ||
.then(() => { | ||
return hapiReply(new Readable().wrap(hapiRequest.raw.res)) | ||
}) | ||
}) | ||
} | ||
} | ||
|
||
function defaultHandlerWrapper (app) { | ||
return function (hapiRequest, hapiReply) { | ||
return new Promise((resolve, reject) => { | ||
app.run(hapiRequest.raw.req, hapiRequest.raw.res) | ||
.catch(error => { | ||
reject(error) | ||
}) | ||
.then(() => { | ||
return hapiReply(new Readable().wrap(hapiRequest.raw.res)) | ||
}) | ||
}) | ||
} | ||
} | ||
|
||
module.exports = { | ||
pathWrapper, | ||
defaultHandlerWrapper | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"scripts": { | ||
"dev": "node server.js", | ||
"build": "next build", | ||
"start": "NODE_ENV=production node server.js" | ||
}, | ||
"dependencies": { | ||
"hapi": "^16.1.0", | ||
"next": "^2.0.0-beta" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import React from 'react' | ||
|
||
export default () => <div>a</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import React from 'react' | ||
|
||
export default () => <div>b</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
import Link from 'next/link' | ||
|
||
export default () => ( | ||
<ul> | ||
<li><Link href='/b' as='/a'><a>a</a></Link></li> | ||
<li><Link href='/a' as='/b'><a>b</a></Link></li> | ||
</ul> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
const next = require('next') | ||
const Hapi = require('hapi') | ||
const { pathWrapper, defaultHandlerWrapper } = require('./nextWrapper') | ||
|
||
const dev = process.env.NODE_ENV !== 'production' | ||
const app = next({ dev }) | ||
const server = new Hapi.Server() | ||
|
||
app.prepare() | ||
.then(() => { | ||
server.connection({ port: 3000 }) | ||
|
||
server.route({ | ||
method: 'GET', | ||
path: '/a', | ||
handler: pathWrapper(app, '/a') | ||
}) | ||
|
||
server.route({ | ||
method: 'GET', | ||
path: '/b', | ||
handler: pathWrapper(app, '/b') | ||
}) | ||
|
||
server.route({ | ||
method: 'GET', | ||
path: '/{p*}', /* catch all route */ | ||
handler: defaultHandlerWrapper(app) | ||
}) | ||
|
||
server.start().catch(error => { | ||
console.log('Error starting server') | ||
console.log(error) | ||
}).then(() => { | ||
console.log('> Ready on http://localhost:3000') | ||
}) | ||
}) |