
Security News
November CVEs Fell 25% YoY, Driven by Slowdowns at Major CNAs
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.
@cmpsr/markdown-editor
Advanced tools
[](https://github.com/cmpsr/composer/actions/workflows/test.yml) [ => void;
placeholder?: string;
};
export const MyEditor: FC<Props> = ({ value, onChange, placeholder }) => (
<ComposerProvider>
<MarkdownEditor
initialValue={value}
onChange={onChange}
placeholder={placeholder}
height="350px"
width="100%"
/>
</ComposerProvider>
);
This component is not a controlled component, the initialValue will only be set once to the first non falsy value provided, once a value is set subsequent values sent to the component will be ignored. For example in the following code the value set inside the setTimeout will be discarded by the MarkdownEditor and # First value will be used.
export const WithInitialValue = () => {
const [value, setValue] = useState("# First value");
useEffect(() => {
setTimeout(() => {
setValue("# Second value");
}, 1000);
}, []);
return <MarkdownEditor initialValue={value} />;
};
Before creating the pull request you have to generate a changeset for your components, follow the instructions in here.
FAQs
[](https://github.com/cmpsr/composer/actions/workflows/test.yml) [
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
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.