npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@markview/core

v0.1.0

Published

Beautiful, framework-agnostic markdown renderer with Shiki, Mermaid, KaTeX, and GitHub-flavored markdown support

Readme

@markview/core

Beautiful, framework-agnostic markdown renderer

Render GitHub-flavored markdown to HTML with optional Shiki syntax highlighting, Mermaid diagrams, and KaTeX math. Zero framework dependencies.

License: AGPL v3 npm


Install

npm install @markview/core

Optional peer dependencies (install only what you need):

npm install shiki      # Syntax highlighting (140+ languages)
npm install mermaid    # Diagram rendering
npm install katex      # Math equations

Quick Start

import { renderMarkdown } from '@markview/core';
import '@markview/core/styles';

const html = await renderMarkdown('# Hello World\n\nThis is **bold** and `inline code`.', {
  shiki: true,
  mermaid: true,
  katex: true,
});

document.getElementById('content').innerHTML = `<div class="markview-content">${html}</div>`;

API

renderMarkdown(content, options?)

Render markdown to HTML with full GFM support.

const html = await renderMarkdown(content, {
  shiki: true,                          // Enable syntax highlighting
  shiki: { theme: 'github-dark' },      // Custom Shiki theme
  mermaid: true,                        // Enable Mermaid diagrams
  mermaid: { theme: 'dark' },           // Custom Mermaid theme
  katex: true,                          // Enable KaTeX math
  sanitize: true,                       // HTML sanitization (default: true)
  headingIds: true,                     // Auto-generate heading IDs (default: true)
  alerts: true,                         // GitHub-style alerts (default: true)
  codeBlockToolbar: true,               // Code block copy button (default: true)
});

parseFrontmatter(raw)

Parse YAML frontmatter from markdown.

import { parseFrontmatter } from '@markview/core';

const { data, content } = parseFrontmatter(`---
title: My Document
tags: [typescript, markdown]
---
# Hello`);

console.log(data.title);  // "My Document"
console.log(data.tags);   // ["typescript", "markdown"]

extractHeadings(html)

Extract headings from rendered HTML for table of contents.

import { renderMarkdown, extractHeadings } from '@markview/core';

const html = await renderMarkdown('# Title\n## Section');
const headings = extractHeadings(html);
// [{ id: 'title', text: 'Title', level: 1 }, { id: 'section', text: 'Section', level: 2 }]

searchFiles(files, query)

Full-text search across markdown files.

import { searchFiles } from '@markview/core';

const results = searchFiles([
  { id: '1', filename: 'README.md', content: '# Hello\nWorld' },
], 'hello');

Styling

Import the included styles and wrap your HTML in a .markview-content container:

<div class="markview-content">
  <!-- rendered HTML goes here -->
</div>

Theming

Override CSS custom properties to match your design:

:root {
  --mv-text-primary: #1f2328;
  --mv-bg-primary: #ffffff;
  --mv-accent-blue: #0969da;
  /* ... see styles/markview.css for all tokens */
}

License

AGPL-3.0 — see LICENSE.

For commercial use without AGPL obligations, contact [email protected] for a commercial license.