
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@acutejs/plugin-lit-html
Advanced tools
A plugin for Acute to use [lit-html](https://lit-html.polymer-project.org).
A plugin for Acute to use lit-html.
First, install the plugin and its peer-dependency, lit-html.
npm install @acutejs/plugin-lit-html lit-html
Next, pass the plugin and a reference to lit-html’s render function to Acute’s createApp().
import litHtml from '@acutejs/plugin-lit-html';
import { render } from 'lit-html';
createApp({
// ...
plugins: [
litHtml({
render,
}),
],
});
Finally, use lit-html’s html function to tag the template string in your components render() function.
import { html } from 'lit-html';
const message = 'Hello, world';
export default {
render() {
return html`<p> ${message} </p>`;
},
};
FAQs
A plugin for Acute to use [lit-html](https://lit-html.polymer-project.org).
We found that @acutejs/plugin-lit-html demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.