文件名称:React 服务器端渲染支持 Fastify with Next
文件大小:81KB
文件格式:ZIP
更新时间:2024-06-28 10:25:11
React Renderers
fastify-nextjs React 服务器端渲染支持 Fastify with Next Framework。 安装 npm i fastify-nextjs next react react-dom --save 用法由于 Next 在第一次启动时需要一些时间来准备好,您必须在注册插件后在 after 回调中声明您的路由。 该插件将在 Fastify 中公开 api,它将为您处理渲染。 const fastify = require('fastify')() fastify .register(require('fastify-nextjs')) .after(() => { fastify.next('/hello') }) fastify.listen(3000, err => { if (err) throw err console.log('Server listener on http://localhost:3000') }) 所有服务器呈现的页面都必须保存在文件夹页面中,您可以在下一个文档中看到。 // /pages/hello.js 导出默认值 () =>
【文件预览】:
fastify-nextjs-master
----pages()
--------hello.jsx(44B)
--------api()
----.github()
--------stale.yml(772B)
--------dependabot.yml(261B)
--------workflows()
----.taprc(52B)
----types.test.ts(665B)
----example.js(256B)
----test.js(12KB)
----tsconfig.json(599B)
----LICENSE(1KB)
----README.md(4KB)
----index.d.ts(1KB)
----.npmrc(18B)
----.gitignore(2KB)
----index.js(3KB)
----package-lock.json(276KB)
----package.json(2KB)