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

@magzgtz/rtf-to-html

v1.1.0

Published

Convert RTF strings to HTML, preserving formatting, styles, and hyperlinks

Downloads

274

Readme

@magzgtz/rtf-to-html

A TypeScript library that converts RTF (Rich Text Format) strings into HTML, preserving text formatting, styles, and hyperlinks.

Features

  • Bold, italic, underline, and strikethrough text
  • Headings (h1, h2) and paragraphs
  • Font families, font sizes, and text colors
  • Text alignment and indentation
  • Hyperlinks
  • Superscript and subscript
  • Inline CSS styles on all output elements
  • Promise-based async API

Installation

npm install @magzgtz/rtf-to-html

Usage

import { rtfToHtml } from "@magzgtz/rtf-to-html";

const rtf = String.raw`{\rtf1\ansi{\fonttbl\f0\fswiss Helvetica;}\f0\pard This is {\b bold} and {\i italic} text.\par}`;

const html = await rtfToHtml(rtf);
console.log(html);

Output

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <style>
      .body { margin-left: 0pt; ... }
    </style>
  </head>
  <body>
    <p>
      <span>This is </span><span><strong>bold</strong></span
      ><span> and </span><span><em>italic</em></span
      ><span> text.</span>
    </p>
  </body>
</html>

API

rtfToHtml(rtf: string): Promise<string>

Converts an RTF string to an HTML document string.

| Parameter | Type | Description | | --------- | -------- | ------------------ | | rtf | string | A valid RTF string |

Returns: Promise<string> — a full HTML document as a string.

Throws: Rejects with an error if the RTF input is malformed or cannot be parsed.

Supported RTF Elements

| RTF Control | HTML Output | | -------------------- | ----------------- | | \b | <strong> | | \i | <em> | | \ul | <u> | | \strike | <s> | | \super | <sup> | | \sub | <sub> | | \par | <p> | | Heading 1 style | <h1> | | Heading 2 style | <h2> | | \field (HYPERLINK) | <a href="..."> | | Font, size, color | inline style="" |

Development

Prerequisites

  • Node.js 18+
  • npm

Setup

git clone https://github.com/magalyg/rtfToHtml.git
cd rtfToHtml
npm install

Run the CLI demo

npm start

You will be prompted to paste an RTF string. The converted HTML is printed to stdout.

Build the library

npm run build

Compiled output lands in dist/.

License

ISC