GithubHelp home page GithubHelp logo

SSR middlewares about react-pages HOT 2 CLOSED

boccob avatar boccob commented on July 23, 2024
SSR middlewares

from react-pages.

Comments (2)

catamphetamine avatar catamphetamine commented on July 23, 2024

I removed koa because it was unnecessary for rendering.
I can export the render_page function if that works for you.
https://github.com/catamphetamine/react-website/blob/master/source/server/server.js#L15

global.navigator won't work because it's a global variable and rendering service is asynchronous, i.e. multiple pages are being rendered simultaneously for different users.
What are you using it for.

from react-pages.

catamphetamine avatar catamphetamine commented on July 23, 2024

I released the new version which now exports a different render() function.
It can be used instead of the default startRenderingServer() function.
E.g. with Koa or Express.

Internal render() function

For some advanced use cases (though most likely no one's using this) the internal render() function is exposed.

import { render } from 'react-website/server'
import settings from './react-website'

// Returns a Promise.
//
// redirect - redirection URL (in case of an HTTP redirect).
// cookies - a `Set` of HTTP cookies to be set (`response.setHeader('Set-Cookie', cookie)` for each of them).
// status  - HTTP response status.
// content - rendered HTML document (a Node.js "Readable Stream").
//
const { redirect, cookies, status, content } = await render(
  request.url,
  request.headers,
  settings,
  serverSideConfiguration
)

The await render() function call can be wrapped in a try/catch block and for the catch block there's also the exported renderError(error) function.

import { renderError } from 'react-website/server'

// status  - HTTP response status.
// content - rendered error (a string).
// contentType - HTTP `Content-Type` header (either `text/html` or `text/plain`).
//
const { status, content, contentType } = renderError(error)

from react-pages.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.