Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@greenwood/plugin-renderer-lit
Advanced tools
A server-side renderering plugin for Lit based Greenwood projects.
A Greenwood plugin for using Lit's SSR capabilities as a custom server-side renderer. Although support is expiremental 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.
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
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
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! The below example even uses the standard SimpleGreeting component from the Lit docs.
import fetch from 'node-fetch';
import { html } from 'lit';
import '../components/greeting.js';
async function getBody() {
const artists = await fetch('http://www.mydomain.com/api/artists').then(resp => resp.json());
return html`
<h1>Lit SSR response</h1>
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Decription</th>
<th>Message</th>
<th>Picture</th>
</tr>
${
artists.map((artist) => {
const { id, name, bio, imageUrl } = artist;
return html`
<tr>
<td>${id}</td>
<td>${name}</td>
<td>${bio}</td>
<td>
<a href="http://www.mydomain.com/artists/${id}" target="_blank">
<simple-greeting .name="${name}"></simple-greeting>
</a>
</td>
<td><img src="${imageUrl}"/></td>
</tr>
`;
})
}
</table>
`;
}
export { getBody };
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 compatiblity and portablity.
FAQs
A server-side rendering plugin for Lit based Greenwood projects.
We found that @greenwood/plugin-renderer-lit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.