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 🙏

© 2024 – Pkg Stats / Ryan Hefner

tiper-js

v1.1.0

Published

A library for creating awesome typing animations.

Downloads

14

Readme

npm version

A small library for creating typing animations.

View a short video demonstration here.

Installation

npm i tiper-js

Usage

Initialization is really simple. Just create a new instance of Tiper and pass in a DOM element. The options object is optional.

//ES6
import Tiper from "tiper-js";

//ES5
let Tiper = require('tiper-js');

let tiper = new Tiper(document.querySelector('.tiper-js-container'));

tiper.beginTyping(); //Begins typing with default text and config.
tiper.line('Hello, neighbor!') // Types "Hello, neighbor!". Also uses default config.

If you want to have the blinking cursor affect, link the css file in your html file like so:

<link type="text/css" rel="stylesheet" href="./node_modules/tiper-js/lib/tiper-js.css">

Checkout the test folder for a basic, viewable example.

Options

Tiper exposes a minimal, yet fun, set of options to play around with.

  • text: string (required) - The string of text to be typed.
  • hesitation: number - A number from 0 to 1. Used as a factor in determining the delay between typing the next character. Default is 0.45.
  • wordsPerMinute: number: - A number used to determine typing speed. Default is 40.
  • pauseTimeout: number: - The time in ms to pause on certain conditions. Only applies if pauseOnSpace or pauseOnEndOfSentence is true.
  • pauseOnSpace: boolean: - Whether or not to pause on spaces. Default is false.
  • pauseOnEndOfSentence: boolean: - Whether or not to pause at the end of sentences. Default is true.
  • showCaret: boolean: - Whether or not show caret. Default is false.
  • caretType: string: - The type of caret to show if showCaret is true. Available options are 'normal' or 'underscore'. Default is 'normal'.
  • glitch: boolean: - Whether or not to show glitch effect intermittently.
  • onFinishedTyping: Function: - The callback to fire after the text has been typed.

Methods

  • typer.beginTyping(text: string, reset: boolean) - Begin typing at the current index. Returns a Promise that resolves when all the text has been typed.
  • typer.stopTyping() - Stop typing at the current index. Returns a Promise that resolves when async interval is cleared.
  • typer.line(text: string) - Output a single line of text. Returns a Promise that resolves when the particular text is finished being displayed.