
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
shared-component
Advanced tools
Share a component instance inside a window context. A component is created once, and cached so the same component is returned on all following calls.
var shared = require('shared-component')
var html = require('html')
shared.oncreate('header', function (header) {
return header()
})
var header1 = shared.create('header', createHeader)
var header2 = shared.create('header', createHeader)
console.log(header1 === header2)
// => true
function createHeader () {
return html`
<header>I'm a header</header>
`
}
shared.oncreate(name, cb(createComponent))Handle the creation of a new component. Only called the first time
shared.create(name, create) is called with the matching name.
component = shared.create(name, createComponent)Create a component instance. If it's the first time that a component is created
it calls the corresponding shared.oncreate(name, cb) method. Will return the
initialized component on all subsequent calls.
FAQs
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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.