
Security News
Federal Audit Finds NIST Wasted Funds With No Plan to Clear NVD Backlog
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.
@ecopages/ecopages-jsx
Advanced tools
Integration plugin for @ecopages/jsx templates in Ecopages. It provides server-rendered JSX pages, Radiant-backed web component support, and optional MDX route handling.
bunx jsr add @ecopages/ecopages-jsx @ecopages/radiant
@ecopages/radiant is a required peer dependency for this package.
Register the ecopagesJsxPlugin in your eco.config.ts.
import { ConfigBuilder } from '@ecopages/core/config-builder';
import { ecopagesJsxPlugin } from '@ecopages/ecopages-jsx';
const config = await new ConfigBuilder()
.setBaseUrl(import.meta.env.ECOPAGES_BASE_URL)
.setIntegrations([ecopagesJsxPlugin()])
.build();
export default config;
Radiant runtime bundles are enabled by default so JSX pages can render and hydrate Radiant custom elements.
ecopagesJsxPlugin({
radiant: true,
});
Set radiant: false when your JSX pages do not need the Radiant browser runtime on a given app.
Enable MDX to treat .mdx files as JSX routes compiled against the @ecopages/jsx runtime.
import { ConfigBuilder } from '@ecopages/core/config-builder';
import { ecopagesJsxPlugin } from '@ecopages/ecopages-jsx';
const config = await new ConfigBuilder()
.setIntegrations([
ecopagesJsxPlugin({
mdx: {
enabled: true,
},
}),
])
.build();
export default config;
FAQs
JSX integration plugin for Ecopages
We found that @ecopages/ecopages-jsx demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.