
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
nova-react-bridge
Advanced tools
This package contains a React component named Nova that renders a placeholder also known as Nova Directive
Rendered placeholder:
<div data-hypernova-key="NavBar" data-hypernova-id="d0a0b082-dad0-4bf2-ae4f-08eff16575b4"></div>
<script type="application/json" data-hypernova-key="NavBar" data-hypernova-id="d0a0b082-dad0-4bf2-ae4f-08eff16575b4"><!--{"brand":"Ara Framework","links":[{"url":"https://github.com/ara-framework","text":"Github"}]}--></script>
On Client-Side Rendering the placeholder is where the component is going to be mounted or hydrated depending on the framework or library.
On Server-Side Rendering the placeholder is used by Nova Proxy or Nova Static to Server-Side Include the HTML rendered by Hypernova.
npm install nova-react-bridge
The Nova component requires the props name and data
name is the registered view in Hypernova.data is the data necessary to render the view.import { Nova } from 'nova-react-bridge'
const Page = () => (
<div>
<Nova
name="NavBar"
data={{ brand: 'Ara Framework', links: [{ url: 'https://github.com/ara-framework', text: "Github" }]}}
/>
</div>
)
The Nova component emits a custom event called NovaMount on the document when the React component is mounted. The event needs to be listened by the Hypernova's client script in order to mount the view when the placeholder is ready.
import { renderClient } from 'hypernova-redom'
document.addEventListener('NovaMount', (event) => {
const { detail: { name, id } } = event
if (name === 'NavBar') {
return renderClient(name, NavBar, id)
}
})
The example above is using the method renderClient from hypernova-redom, this method should be available for the other supported bindings.
FAQs
Nova Bridge for React
The npm package nova-react-bridge receives a total of 4 weekly downloads. As such, nova-react-bridge popularity was classified as not popular.
We found that nova-react-bridge 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.