In addition to supporting static and Single Page application project types, you can also use Greenwood to author routes completely in JavaScript and host these on a server.
👉 To run a Greenwood project with SSR routes for production, just use the
serve
command.
File based routing also applies to server routes. Just create JavaScript file in the pages/ directory and that's it!
src/
pages/
users.js
greenwood.config.js
The above would serve content in a browser at /users/
.
In your [page].js file, Greenwood supports the following functions you can export
for providing server rendered configuration and content:
default
: Use a custom element to render your page content. Will take precedence over getBody
. Will also automatically track your custom element dependencies, in place of having to define frontmatter imports in getFrontmatter
.getFrontmatter
: Static frontmatter, useful in conjunction with menus or otherwise static configuration / meta data.getBody
: Effectively anything that you could put into a <content-outlet></content-outlet>
.getTemplate
: Effectively the same as a page template.async function getFrontmatter(compilation, route, label, id) {
return { /* ... */ };
}
async function getBody(compilation, route) {
return '/* some HTML here */';
}
async function getTemplate(compilation, route) {
return '/* some HTML here */';
}
export default class MyComponent extends HTMLElement {
constructor() { }
connectedCallback() { }
}
export {
getFrontmatter,
getBody,
getTemplate
};
When using export default
, Greenwood supports providing a custom element as the export for your page content. It uses WCC by default which also includes support for rendering Declarative Shadow DOM.
import fetch from 'node-fetch';
import '../components/card/card.js'; // <wc-card></wc-card>
export default class UsersPage extends HTMLElement {
async connectedCallback() {
const users = await fetch('https://www.example.com/api/users').then(resp => resp.json());
const html = users.map(user => {
return `
<wc-card>
<h2 slot="title">${user.name}</h2>
<img slot="image" src="${user.imageUrl}" alt="${user.name}"/>
</wc-card>
`;
}).join('');
this.innerHTML = html;
}
}
In the above example, card.js will automatically be bundled for you on the client side! 🙌
Note: Keep in mind that for these "page" components, you will likely want to _avoid Declarative Shadow for rendering the top level (to avoid wrapping static content in
<template>
tags), but definitely use Declarative Shadow DOM within any dependent custom elements of your page._
Any Greenwood supported frontmatter can be returned here. This is only run once when the server is started to populate the graph, which is helpful if you want your dynamic route to show up in a menu like in your header for navigation.
You can even define a template
and reuse all your existing templates, even for server routes!
export async function getFrontmatter(compilation, route) {
return {
template: 'user',
menu: 'header',
index: 1,
title: `${compilation.config.title} - ${route}`,
imports: [
'/components/user.js'
],
data: {
/* ... */
}
};
}
For defining custom dynamic based metadata, like for
<meta>
tags, usegetTemplate
and define those tags right in your HTML.
To export server routes as just static HTML, you can set the static
property within the data
object of your frontmatter.
export async function getFrontmatter() {
return {
/* ... */
data: {
static: true
}
};
}
So for example, /pages/artist.js
would render out as /artists/index.html
and would not require the serve task. So if you need more flexibility in how you create your pages, but still want to just serve it statically, you can!
For just returning content, you can use getBody
. For example, return a list of users from an API as the HTML you need.
import fetch from 'node-fetch'; // this needs to be installed from npm
export async function getBody() {
const users = await fetch('http://www.example.com/api/users').then(resp => resp.json());
const timestamp = new Date().getTime();
const usersListItems = users
.map((user) => {
const { name, imageUrl } = user;
return `
<tr>
<td>${name}</td>
<td><img src="${imageUrl}"/></td>
</tr>
`;
});
return `
<body>
<h1>Hello from the server rendered users page! 👋</h1>
<table>
<tr>
<th>Name</th>
<th>Image</th>
</tr>
${usersListItems.join('')}
</table>
<h6>Fetched at: ${timestamp}</h6>
</body>
`;
}
For creating a template dynamically, you can use getTemplate
and return the HTML you need.
export async function getTemplate(compilation, route) {
return `
<html>
<head>
<meta name="description" content="${compilation.config.title} - ${route} (this route was generated server side!!!)">
<style>
* {
color: blue;
}
h1 {
width: 50%;
margin: 0 auto;
text-align: center;
color: red;
}
</style>
</head>
<body>
<h1>This heading was rendered server side!</h1>
<content-outlet></content-outlet>
</body>
</html>
`;
}
⚠️ This feature is experimental.
Through the support of the following plugins, Greenwood also supports loading custom file formats on the server side using ESM
For example, you can now import JSON in your SSR pages and components.
import json from '../path/to/data.json';
console.log(json); // { status: 200, message: 'some data' }
Steps
v16.17.0
--experimental-loaders
flag and pass Greenwood's custom loader
$ node --experimental-loader ./node_modules/@greenwood/cli/src/loader.js ./node_modules/.bin/greenwood <command>
One of the great things about Greenwood is that you can seamlessly move from completely static to server rendered, without giving up either one! 💯
Given the following workspace of just pages
src/
pages/
index.md
about.md
Greenwood would output the following static build output
public/
about
index.html
index.html
Now, add a dynamic route and run serve
...
src/
pages/
index.md
about.md
user.js
Greenwood will now build and serve all the static content from the pages/ directory as before BUT will also start a server that will now fulfill requests to the newly added server rendered pages too. Neat!
Greenwood provides the ability to prerender your project and Web Components. So what is the difference between that and rendering? In the context of Greenwood, rendering is the process of generating the initial HTML as you would when running on a server. Prerendering is the ability to execute exclusively browser code in a browser and capture that result as static HTML.
So what does that mean, exactly? Basically, you can think of them as being complimentary, where in you might have server side routes that pull content server side (getBody
), but can be composed of static HTML templates (in your src/templates directory) that can have client side code (Web Components) with <script>
tags that could be run after through a headless browser.
The hope with Greenwood is that user's can choose the best blend of server rendering and browser prerendering that fits their projects best because running in a browser unlocks more client side capabilities that will (likely) never be available in a server context, like:
window
/ document
objectsSo server rendering, when constraints are understood, can be a lot a faster to execute compared to a headless browser. However, with good caching strategies, the cost of rendering HTML once with either technique, when amortized over all the subsequent requests and responses, usually ends up being negligible in the long run.
So we hope users find a workflow that works best for them and see Greenwood as more of a knob or spectrum, rather than a toggle. This blog post also provides a lot of good information on the various rendering strategies implemented these days. ⚙️