
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
markdown-exit
Advanced tools
A TypeScript rewrite of markdown-it with first-class typings, modern tooling, and enhancements.
v14.1.0 and plugin API.Read the documentation for more details.
v1+ @latest: All new features and may include breaking changes.
[!IMPORTANT] 🚧 markdown-exit v1 is currently in public beta (
v1.0.0-beta.*).
Breaking changes may occur until a stablev1.0.0is released.
npm i markdown-exit
@legacyFull compatibility with markdown-it usage while adding TypeScript support, bug fixes and performance improvements. (v0 branch)
npm i markdown-exit@legacy
import { createMarkdownExit } from 'markdown-exit'
// factory helper
const md = createMarkdownExit()
const html = md.render('# markdown-exit')
import { MarkdownExit } from 'markdown-exit'
// with the `new` keyword
const md = new MarkdownExit()
const html = md.render('# markdown-exit')
[!NOTE] Default export (with callable constructor support) is retained for markdown-it compatibility, but it may have drawbacks in module interop and tree-shaking.
import MarkdownExit from 'markdown-exit'
// callable function
const md = MarkdownExit()
md.render('# markdown-exit')
// with the `new` keyword
const md = new MarkdownExit()
md.render('# markdown-exit')
Drop-in replacement for markdown-it with enhancements, see Migration Guide for details.
- import MarkdownIt from 'markdown-it'
+ import MarkdownExit from 'markdown-exit'
This project owes its foundation to the markdown-it community and all its contributors.
FAQs
A TypeScript rewrite of markdown-it with enhancements
The npm package markdown-exit receives a total of 21,278 weekly downloads. As such, markdown-exit popularity was classified as popular.
We found that markdown-exit 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.