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

fast-typed

v1.0.2

Published

A JavaScript Typing Animation Library

Readme

fast-typed.js

⚡️ 本库是基于 typed.js 的 fork,专为极致字符输出速度和批量输出优化。

主要特性

  • 一次输出多个字符:通过 newCharPerStep 参数控制每次输出的字符数,极大提升速度上限。
  • typeSpeed=0 真正极速:当 typeSpeed 设为 0 时,字符几乎瞬间输出。
  • 完全兼容 typed.js 的全部用法和参数。

安装与使用

NPM

npm install fast-typed

ESM 用法

import FastTyped from 'fast-typed';
const typed = new FastTyped('#element', {
  strings: ['<i>First</i> sentence.', '& a second sentence.'],
  typeSpeed: 0,
  newCharPerStep: 10,
});

新增参数

  • newCharPerStep:每次输出的字符数,默认 1。数值越大,速度越快。

主要参数(兼容 typed.js)

  • strings:要输出的字符串数组
  • typeSpeed:每个字符输出间隔(毫秒),0 为最快
  • backSpeed:回退速度
  • startDelay:开始前延迟
  • backDelay:回退前延迟
  • loop:是否循环
  • showCursor:是否显示光标
  • ...(其余参数同 typed.js)

示例

var typed = new FastTyped('#element', {
  strings: ['极速输出', '一次输出多个字符!'],
  typeSpeed: 0,
  newCharPerStep: 8,
  loop: true,
});

其它用法与高级功能

  • 支持 HTML 字符串、回退、暂停、回调等全部 typed.js 能力。
  • 详细参数与事件请参考 typed.js 文档

License

MIT


本库 fork 自 mattboldt/typed.js,并在其基础上做了速度和批量输出增强。