Hypernova Lambda
Implementation of Hypernova for AWS Lambda
Differences of Hypernova Server
Hypernova Lambda uses Amazon API Gateway instead of express as HTTP Server and the Server Side Rendering will be perform by the Lambda Function.
Options for Hypernova Lambda
The only supported option for Hypernova Lambda is getComponent
and processJobsConcurrently
is true
by default so all the job will be proccessed concurrently.
getComponet: undefined
Installation
npm install --save hypernova-lambda hypernova
Example
; const getComponent = { if name === 'Header' return /* return component to be render here */ return null;}; const handler = { ;};