rsnext/examples/custom-server-actionhero/README.md

125 lines
3.7 KiB
Markdown
Raw Normal View History

2018-02-27 13:16:17 +01:00
# Running Next.JS and React /inside/ of ActionHero
This server will render dynamic next.js/react pages on some routes, and normal ActionHero API requests on others.<br>
2018-02-27 13:16:17 +01:00
This configuration works with both Next and ActionHero hot reloading of code.
A more detailed example showcasing how to use fetch and web sockets to interact with your API can be found here: https://github.com/actionhero/next-in-actionhero
## How to use
2018-02-27 13:16:17 +01:00
### Using `create-next-app`
2018-02-27 13:16:17 +01:00
Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example:
2018-02-27 13:16:17 +01:00
```bash
npm init next-app --example custom-server-actionhero custom-server-actionhero-app
# or
yarn create next-app --example custom-server-actionhero custom-server-actionhero-app
```
### Download manually
Download the example:
```bash
curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/custom-server-actionhero
cd custom-server-actionhero
```
Install it and run:
```bash
npm install
npm run start
# or
yarn
yarn start
```
2018-02-27 13:16:17 +01:00
## How does this work?
1. Create an initializer to load next.js and create a handler that can extract the normal node `req` and `res` from the connection
```js
// initializers/next.js
const { Initializer, api } = require('actionhero')
2018-02-27 13:16:17 +01:00
const next = require('next')
module.exports = class NextInitializer extends Initializer {
constructor() {
2018-02-27 13:16:17 +01:00
super()
this.name = 'next'
}
async initialize() {
2018-02-27 13:16:17 +01:00
api.next = {
2020-05-18 21:24:37 +02:00
render: async (connection) => {
if (connection.type !== 'web') {
throw new Error('Connections for NEXT apps must be of type "web"')
}
2018-02-27 13:16:17 +01:00
const req = connection.rawConnection.req
const res = connection.rawConnection.res
return api.next.handle(req, res)
},
2018-02-27 13:16:17 +01:00
}
api.next.dev = api.env === 'development'
if (api.next.dev) {
api.log('Running next in development mode...')
}
2018-02-27 13:16:17 +01:00
api.next.app = next({ dev: api.next.dev })
2018-02-27 13:16:17 +01:00
api.next.handle = api.next.app.getRequestHandler()
await api.next.app.prepare()
}
async stop() {
2018-02-27 13:16:17 +01:00
await api.next.app.close()
}
}
```
2. Create an action which will run the above `api.next.render(connection)`. Note that we will not be relying on ActionHero to respond to the client's request in this case, and leave that up to next (via: `data.toRender = false`)
2018-02-27 13:16:17 +01:00
```js
// actions/next.js
const { Action, api } = require('actionhero')
2018-02-27 13:16:17 +01:00
module.exports = class CreateChatRoom extends Action {
constructor() {
2018-02-27 13:16:17 +01:00
super()
this.name = 'render'
this.description = 'I render the next.js react website'
}
async run(data) {
2018-02-27 13:16:17 +01:00
data.toRender = false
return api.next.render(data.connection)
}
}
```
3. Tell ActionHero to use the api rather than the file server as the top-level route in `api.config.servers.web.rootEndpointType = 'api'`. This will allows "/" to listen to API requests. Also update `api.config.general.paths.public = [ path.join(__dirname, '/../static') ]`. In this configuration, the next 'static' renderer will take priority over the ActionHero 'public file' api. Note that any static assets (CSS, fonts, etc) will need to be in "./static" rather than "./public".
2018-02-27 13:16:17 +01:00
Note that this is where the websocket server, if you enable it, will place the `ActionheroWebsocketClient` library.<br>
2018-02-27 13:16:17 +01:00
4. Configure a wild-card route at the lowest priority of your GET handler to catch all web requests that aren't caught by other actions:
```js
// config/routes.js
exports['default'] = {
2020-05-18 21:24:37 +02:00
routes: (api) => {
2018-02-27 13:16:17 +01:00
return {
get: [
{ path: '/time', action: 'time' },
{ path: '/', matchTrailingPathParts: true, action: 'render' },
],
2018-02-27 13:16:17 +01:00
}
},
2018-02-27 13:16:17 +01:00
}
```