
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
create-slots
Advanced tools
Bring Slots to React, with SSR support
🧩 Compose with confidence
🤖 Inversion of Control
🤞 A11y support in ease
🎨 Server Side Rendering
🍀 StrictMode compliant
💪 Best TypeScript support
🪶 Lightweight (< 700B)
Checkout the slides for the background story
import React, { useId } from 'react'
import { createHost, createSlot } from 'create-slots'
const FieldLabel = createSlot('label')
const FieldInput = createSlot('input')
const FieldDescription = createSlot('div')
type FieldProps = React.ComponentPropsWithoutRef<'div'>
export const Field = (props: FieldProps) => {
const id = useId()
return createHost(props.children, (Slots) => {
const labelProps = Slots.getProps(FieldLabel)
const inputProps = Slots.getProps(FieldInput)
const inputId = inputProps?.id || id
return (
<div {...props}>
{labelProps && <label {...labelProps} htmlFor={inputId} />}
<input id={id} {...inputProps} />
{Slots.get(FieldDescription)}
</div>
)
})
}
Field.Label = FieldLabel
Field.Input = FieldInput
Field.Description = FieldDescription
<Field>
<Field.Description>Order doesn't matter</Field.Description>
<Field.Input id="custom-id" />
<Field.Label>I'll use "custom-id"</Field.Label>
</Field>
import React, { useState } from 'react'
import { createHost, createSlot, getSlotProps, isSlot } from 'create-slots/list'
const SelectItem = createSlot('li')
const SelectDivider = createSlot('hr')
type SelectProps = React.ComponentPropsWithoutRef<'ul'>
export const Select = (props: SelectProps) => {
const [selected, setSelected] = useState<string>()
const indexRef = React.useRef(0)
return (
<div>
<div>Selected: {selected ?? ''}</div>
{createHost(props.children, (slots) => {
indexRef.current = 0
return (
<ul {...props}>
{slots.map((slot) => {
if (isSlot(slot, SelectItem)) {
const slotProps = getSlotProps(slot)
return (
<li
{...slotProps}
role="option"
data-index={indexRef.current++}
aria-selected={slotProps.value === selected}
onClick={() => setSelected(slotProps.value as string)}
/>
)
}
return slot
})}
</ul>
)
})}
</div>
)
}
Select.Item = SelectItem
Select.Divider = SelectDivider
<Select>
<Select.Item value="foo">Foo</Select.Item>
<Select.Divider />
<Select.Item value="bar">Bar</Select.Item>
</Select>
MIT © Neo Nie
FAQs
Bring slots to React components
The npm package create-slots receives a total of 3,943 weekly downloads. As such, create-slots popularity was classified as popular.
We found that create-slots 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.