
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
kairos-connection
Advanced tools
Note: This library is not affiliated with Panasonic in any way.
This is a library for communicating with the Panasonic KAIROS video switchers.
More documentation can be found here: github.com/Sofie-Automation/sofie-kairos-connection
const kairos = new KairosConnection()
kairos.on('connect', () => console.log('Connected to Kairos'))
kairos.on('disconnect', () => console.log('Disconnected from Kairos'))
kairos.on('error', (e) => console.error(e))
kairos.on('warn', (e) => console.log(e))
kairos.on('reset', () => {
// Emitted when the kairos has been reset (like when restarted or new configuration loaded)
})
kairos.connect(host, port)
// Send commands:
await kairos.updateScene(refScene(['MyFolder', 'MyScene']), values)
// etc...
// Terminate:
kairos.disconnect()
kairos.discard()
kairos.removeAllListeners()
FAQs
Unknown package
We found that kairos-connection 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
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.