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

@osmn-byhn/editor-core

v0.0.4

Published

The core logic and state management library for the `@osmn-byhn` markdown editor ecosystem. This package is framework-agnostic, meaning it can be used with React, Vue, Svelte, or vanilla JavaScript.

Readme

@osmn-byhn/editor-core

The core logic and state management library for the @osmn-byhn markdown editor ecosystem. This package is framework-agnostic, meaning it can be used with React, Vue, Svelte, or vanilla JavaScript.

It handles:

  • Text manipulation
  • Selection (cursor) management
  • Markdown formatting logic (bold, italic, lists, etc.)
  • History/Undo management (planned)

Installation

pnpm add @osmn-byhn/editor-core

Quick Start

import { createEditor } from '@osmn-byhn/editor-core'

// 1. Initialize the editor
const editor = createEditor('Hello **World**')

// 2. Subscribe to changes (if needed manually) or get state
console.log(editor.getState())
// Output: { value: 'Hello **World**', selection: { start: 0, end: 0 }, format: 'markdown' }

// 3. Perform actions
editor.setSelection(6, 11) // Select "World"
editor.toggleWrap('_')     // Italicize -> "Hello **_World_**"

API Reference

createEditor(initialValue?: string)

Initializes a new editor instance.

  • Parameters:
    • initialValue (optional): The starting markdown content. Default is ''.
  • Returns: An object containing the editor methods.

Key Methods

getState(): EditorState

Returns the current snapshot of the editor state.

interface EditorState {
  value: string          // Current content
  selection: {           // Current cursor/selection position
    start: number
    end: number
  }
  format: EditorFormat   // 'markdown' | 'html'
}

setValue(value: string): void

Replaces the entire content of the editor. This is useful for controlled components or external updates.

setSelection(start: number, end: number): void

Updates the cursor position or selection range.

  • start: Start index of the selection.
  • end: End index of the selection.

insertText(text: string): void

Inserts text at the current cursor position or replaces the current selection with the given text.

isActive(type: FormattingType): boolean

Checks if the current selection is formatted with the specific type.

  • Types: 'bold' | 'italic' | 'strikethrough' | 'code' | 'h1' | 'h2' | 'h3' | 'ordered' | 'unordered' | 'task'

toggleWrap(syntax: string): void

Toggles wrapping syntax around the current selection. Used for inline styles.

  • Example: editor.toggleWrap('**') for bold.

toggleLinePrefix(prefix: string): void

Toggles a prefix at the start of the current line. Used for block styles.

  • Example: editor.toggleLinePrefix('# ') for H1.

applyBlock(type: 'code', lang?: string): void

Wraps the selection in a code block with an optional language.

  • Example: editor.applyBlock('code', 'typescript')

Types

export type EditorFormat = 'markdown' | 'html'

export interface EditorState {
  value: string
  selection: {
    start: number
    end: number
  }
  format: EditorFormat
}