
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/core
Advanced tools
Acute is a lightweight but opinionated framework that allows you to build web apps using web components.
Acute is a lightweight but opinionated framework that allows you to build web apps using web components.
It abstracts away some of the more tedious and repetitive parts of authoring custom elements, such as attribute-property binding, event handling and templating.
Acute components are defined as objects. This pattern works nicely with modules:
HelloWorld.js
import { html } from '@acutejs/plugin-lit-html';
export default {
props: {
greeting: {
default: 'Hello',
type: String,
},
name: {
default: 'world',
type: String,
}
},
render({ greeting, name }) {
return html`
<p>
${ greeting }, ${ name }
</p>
`;
},
};
createApp functionThe createApp is used to register components with Acute.
app.js
import { createApp } from '@acutejs/core';
import litHtml from '@acutejs/plugin-lit-html';
import HelloWorld from './HelloWorld.js';
createApp({
components: {
HelloWorld,
},
plugins: [
litHtml,
]
});
Bootstrapping your app is as simple as including your base components.
index.html
<!DOCTYPE html>
<html>
<head>
<script async src="bundle.js"></script>
</head>
<body>
<hello-world name="Acute"></hello-world>
</body>
</html>
FAQs
Acute is a lightweight but opinionated framework that allows you to build web apps using web components.
We found that @acutejs/core 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.