hypernova
hypernova copied to clipboard
A service for server-side rendering your JavaScript views
I'm using [`onServer`](https://github.com/airbnb/hypernova/blob/master/src/worker.js#L105) to be able to hook into express before the batch route is added, so I can do something like this: https://stackoverflow.com/a/21858212/4396258 (Context: we want to just restart...
Rather than using different renderer functions allow hypernova to be extended through an array of functions which will operate in a reduce() fashion. Context: https://github.com/airbnb/hypernova-aphrodite/pull/5
As per documentation: `The most common use-case would be to use a VM to keep each module sandboxed between requests. You can use createGetComponent from Hypernova to retrieve a getComponent...
html coverage reports currently show the compiled es5 Would be nice to either: 1. Add sourcemaps to istanbul reports 2. Switch to [nyc](https://github.com/istanbuljs/nyc) and compile on the fly (2 is...
I have an issue with `makeValidDataAttribute` expecting to always get only defined values. When I run an application where the hypernova server fails and the hypernova client ([hypernova-python](https://github.com/ornj/hypernova-python) in my...
I'm working on an issue to optimize open source library for server rendering: [github.com/shakacode/react_on_rails/pull/660](https://github.com/shakacode/react_on_rails/pull/660#issuecomment-279575815). We're considering breaking away from placing react hydration data in a meta tag and moving into...
Per https://github.com/nodejs/node/pull/2741 - this will start warning soon. https://github.com/nodejs/node/issues/3307 seems to provide a way to do `isNativeModule`.
Trying to make it more developer friendly. The main change is to split worker's one big thing into separate methods, to allow downstream apps have hypernova's functionality on different endpoints...