0.29.3 • Published 2 days ago

@greenwood/plugin-renderer-lit v0.29.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 days ago

@greenwood/plugin-renderer-lit

Overview

A Greenwood plugin for using Lit's SSR capabilities as a custom server-side renderer. Although support is experimental at this time, this plugin also gives the ability to statically render entire pages and templates (instead of puppeteer) to output completely static sites.

We are still actively working on SSR features and enhancements for Greenwood as part of our 1.0 release so please feel free to test it out and report your feedback. 🙏

This package assumes you already have @greenwood/cli installed.

Prerequisite

This packages depends on the Lit package as a peerDependency. This means you must have Lit already installed in your project. You can install anything following the 2.x release line.

# npm
$ npm install lit --dev

# yarn
$ yarn add lit --dev

Installation

You can use your favorite JavaScript package manager to install this package.

# npm
npm install @greenwood/plugin-renderer-lit --save-dev

# yarn
yarn add @greenwood/plugin-renderer-lit --dev

Usage

Add this plugin to your greenwood.config.js.

import { greenwoodPluginRendererLit } from '@greenwood/plugin-renderer-lit';

export default {
  ...

  plugins: [
    greenwoodPluginRendererLit()
  ]
}

Now, you can write some SSR routes using Lit including all the available APIs. The below example uses the standard SimpleGreeting component from the Lit docs by also using a LitElement as the default export!

import { html, LitElement } from 'lit';
import './path/to/greeting.js';

export default class ArtistsPage extends LitElement {

  constructor() {
    super();
    this.artists = [{ /* ... */ }];
  }

  render() {
    const { artists } = this;

    return html`
      ${
        artists.map((artist) => {
          const { id, name, imageUrl } = artist;

          return html`
            <a href="/artists/${id}" target="_blank">
              <simple-greeting .name="${name}"></simple-greeting>
            </a>

            <img src="${imageUrl}" loading="lazy"/>

            <br/>
          `;
        })
      }
    `;
  }
}

// for now these are needed for the Lit specific implementations
customElements.define('artists-page', ArtistsPage);
export const tagName = 'artists-page';

Note: Lit SSR only renders into declarative shadow roots so you will have to keep browser support and polyfill usage in mind depending on your use case.

Options

Prerender (experimental)

The plugin provides a setting that can be used to override Greenwood's default prerender which is Puppeteer, and to instead use Lit.

import { greenwoodPluginRendererLit } from '@greenwood/plugin-renderer-lit';

export default {
  ...

  plugins: [
    greenwoodPluginRendererLit({
      prerender: true
    })
  ]
}

Keep in mind you will need to make sure your Lit Web Components are isomorphic and properly leveraging LitElement's lifecycles and browser / Node APIs accordingly for maximum compatibility and portability.

0.30.0-alpha.2

2 days ago

0.29.3

5 days ago

0.30.0-alpha.1

2 months ago

0.30.0-alpha.0

2 months ago

0.29.2

4 months ago

0.29.1

5 months ago

0.29.0

6 months ago

0.29.0-alpha.1

10 months ago

0.29.0-alpha.4

8 months ago

0.29.0-alpha.5

7 months ago

0.29.0-alpha.2

9 months ago

0.29.0-alpha.3

9 months ago

0.29.0-alpha.6

6 months ago

0.28.5

9 months ago

0.29.0-alpha.0

11 months ago

0.28.4

11 months ago

0.28.3

12 months ago

0.28.2

1 year ago

0.28.1

1 year ago

0.28.0

1 year ago

0.28.0-alpha.5

1 year ago

0.28.0-alpha.4

1 year ago

0.28.0-alpha.3

1 year ago

0.28.0-alpha.1

1 year ago

0.27.5

1 year ago

0.28.0-alpha.2

1 year ago

0.27.4

1 year ago

0.27.0-alpha.3

1 year ago

0.27.0-alpha.7

1 year ago

0.27.0-alpha.6

1 year ago

0.27.0-alpha.5

1 year ago

0.27.0-alpha.4

1 year ago

0.27.2

1 year ago

0.27.1

1 year ago

0.27.0

1 year ago

0.27.3

1 year ago

0.28.0-alpha.0

1 year ago

0.27.0-alpha.2

2 years ago

0.26.2

2 years ago

0.26.1

2 years ago

0.27.0-alpha.1

2 years ago

0.27.0-alpha.0

2 years ago

0.26.0-alpha.0

2 years ago

0.26.0-alpha.1

2 years ago

0.25.2

2 years ago

0.26.0

2 years ago

0.25.1

2 years ago

0.25.0

2 years ago

0.25.0-alpha.3

2 years ago

0.25.0-alpha.2

2 years ago

0.25.0-alpha.1

2 years ago

0.25.0-alpha.0

2 years ago

0.24.2

2 years ago

0.24.1

2 years ago

0.24.0

2 years ago

0.23.1

2 years ago

0.23.0

2 years ago

0.23.0-alpha.1

2 years ago

0.23.0-alpha.0

2 years ago