@coodev/react
v1.0.0-dev.26
Published
React server-side rendering framework
Downloads
17
Maintainers
Readme
Coodev Core
Usage
Install
npm i @coodev/react react react-dom
Create pages
Create page component in pages
directory, for example pages/index.tsx
import React from 'react'
export default function Home() {
return <div>Home</div>
}
Development
Add dev script in package.json
{
"scripts": {
"dev": "coodev-react"
}
}
Start development server
npm run dev
Build
Add build script in package.json
{
"scripts": {
"build": "coodev-react build"
}
}
Build
npm run build
Coodev Configuration
/**
* config
*/
const coodevConfig = {
root: '.',
ssr: {
streamingHtml: true,
},
runtimeConfig: {},
plugins: [
{
configResolved?(config: InternalConfiguration): Promisable<void>
configureCoodev?(coodev: Coodev): void | (() => void)
buildEnd?(options: BuildEndOptions, output: BuildOutput): Promisable<void>
documentHtml?(html: string): Promisable<void | string>
htmlRendered?(html: string): Promisable<void | string>
}
],
}