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

sinque

v1.0.0

Published

Lightweight TTML parser and timed-text rendering engine for the web

Readme

sinque — lightweight TTML parser and writer

A small toolkit for working with TTML (Timed Text Markup Language) in the browser.

  • Parse TTML into timed cues
  • Write TTML from plain text by recording timings line by line

Features

  • ✅ TTML parsing (basic <p> cues)
  • ✅ Plain text → TTML writer engine (line timing recorder)
  • ✅ Optional leading/trailing silence rows
  • ✅ XML escaping for safe output
  • ✅ Export as string or Blob

Install

npm

npm i sinque

yarn

yarn add sinque

pnpm

pnpm add sinque

Parsing TTML

Parse from a string

import { parse } from 'sinque'

const xml = `<?xml version="1.0" encoding="UTF-8"?>
<tt xmlns="http://www.w3.org/ns/ttml">
  <body>
    <div>
      <p begin="00:00:01.000" end="00:00:02.000">Hello</p>
    </div>
  </body>
</tt>`

const cues = parse(xml)
// => [{ start: 1000, end: 2000, text: 'Hello' }]

Parse from a file

import { parse } from 'sinque'

const response = await fetch('example/text.ttml')
const file = await response.blob()

const cues = parse(file)

Writing TTML from text (timing recorder)

The writer engine converts plain text lines into TTML cues by recording the end time for each line.

API

const { rows, write, exportTTMLString, exportTTMLFile } = sinque.write({
  text,
  silence: {
    start: true,
    end: true,
  },
})

rows                      // string[] — lines to time
record(rowIndex, endTime) // endTime in ms; start is inferred from the previous line
exportTTMLString()        // throws if not all rows are timed
exportTTMLFile()          // returns Blob (application/ttml+xml)

Example

import { write } from 'sinque'

const text = `Intro
First line
Second line
Outro`

const writer = write({
  text,
  silence: { start: true, end: true }
})

// Show in UI
console.log(writer.rows)

// Record timings (end times in ms)
writer.record(0, 1200)
writer.record(1, 2800)
writer.record(2, 4100)
writer.record(3, 5200)
writer.record(4, 6500)
writer.record(5, 8000)

// Export
const ttml = writer.exportTTMLString()
console.log(ttml)

const blob = await writer.exportTTMLFile()

Export functions throw TTML is not ready until every row has both start and end values.


License

MIT