Gathering detailed insights and metrics for preact-render-to-string
Gathering detailed insights and metrics for preact-render-to-string
Gathering detailed insights and metrics for preact-render-to-string
Gathering detailed insights and metrics for preact-render-to-string
📄 Universal rendering for Preact: render JSX and Preact components to HTML.
npm install preact-render-to-string
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
653 Stars
597 Commits
92 Forks
10 Watching
39 Branches
50 Contributors
Updated on 16 Nov 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
1.1%
278,177
Compared to previous day
Last week
2.5%
1,558,470
Compared to previous week
Last month
10.5%
6,492,210
Compared to previous month
Last year
46.7%
64,399,596
Compared to previous year
1
23
Render JSX and Preact components to an HTML string.
Works in Node & the browser, making it useful for universal/isomorphic rendering.
>> Cute Fox-Related Demo (@ CodePen) <<
1import { render } from 'preact-render-to-string'; 2import { h } from 'preact'; 3/** @jsx h */ 4 5let vdom = <div class="foo">content</div>; 6 7let html = render(vdom); 8console.log(html); 9// <div class="foo">content</div>
1import { render } from 'preact-render-to-string'; 2import { h, Component } from 'preact'; 3/** @jsx h */ 4 5// Classical components work 6class Fox extends Component { 7 render({ name }) { 8 return <span class="fox">{name}</span>; 9 } 10} 11 12// ... and so do pure functional components: 13const Box = ({ type, children }) => ( 14 <div class={`box box-${type}`}>{children}</div> 15); 16 17let html = render( 18 <Box type="open"> 19 <Fox name="Finn" /> 20 </Box> 21); 22 23console.log(html); 24// <div class="box box-open"><span class="fox">Finn</span></div>
1import express from 'express'; 2import { h } from 'preact'; 3import { render } from 'preact-render-to-string'; 4/** @jsx h */ 5 6// silly example component: 7const Fox = ({ name }) => ( 8 <div class="fox"> 9 <h5>{name}</h5> 10 <p>This page is all about {name}.</p> 11 </div> 12); 13 14// basic HTTP server via express: 15const app = express(); 16app.listen(8080); 17 18// on each request, render and return a component: 19app.get('/:fox', (req, res) => { 20 let html = render(<Fox name={req.params.fox} />); 21 // send it back wrapped up as an HTML5 document: 22 res.send(`<!DOCTYPE html><html><body>${html}</body></html>`); 23});
Rendering errors can be caught by Preact via getDerivedStateFromErrors
or componentDidCatch
. To enable that feature in preact-render-to-string
set errorBoundaries = true
1import { options } from 'preact'; 2 3// Enable error boundaries in `preact-render-to-string` 4options.errorBoundaries = true;
Suspense
& lazy
components with preact/compat
1npm install preact preact-render-to-string
1export default () => { 2 return <h1>Home page</h1>; 3};
1import { Suspense, lazy } from 'preact/compat'; 2 3// Creation of the lazy component 4const HomePage = lazy(() => import('./pages/home')); 5 6const Main = () => { 7 return ( 8 <Suspense fallback={<p>Loading</p>}> 9 <HomePage /> 10 </Suspense> 11 ); 12};
1import { renderToStringAsync } from 'preact-render-to-string'; 2import { Main } from './main'; 3 4const main = async () => { 5 // Rendering of lazy components 6 const html = await renderToStringAsync(<Main />); 7 8 console.log(html); 9 // <h1>Home page</h1> 10}; 11 12// Execution & error handling 13main().catch((error) => { 14 console.error(error); 15});
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
all changesets reviewed
Reason
no binaries found in the repo
Reason
21 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 5
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
45 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More