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

text-typing

v0.5.0

Published

Typewriter effect

Downloads

24

Readme

npm version

text-typing

A tool for creating typewriter effect, with a simple, promise based api.

text-typing gif

Installation

Install npm package

npm

npm install text-typing

yarn

yarn add text-typing

And then import the package

import {textTyping} from "text-typing";

Usage

All you need to do is to initialize the tool, passing a reference to an existing DOM element, and start typing!

HTML

<h1 id="myHeading"></h1>

JS

(async () => {      
  const txt = textTyping(document.getElementById("myHeading"));
  await txt.typeText("Hello");
})();    

Chaining methods

You can call multiple methods on the same instance, either by using await (inside an async function), or by using then after a method call

await
(async () => {      
  const txt = textTyping(elem);
  await txt.typeText("Hello");
  await txt.backspace(2);
})();
then
(() => {
  const txt = textTyping(elem);
  txt.typeText("Hello").then(resp => {
    resp.backspace(2);
  });
})();

Options

speed

The typing speed that is going to be used by called methods, if no specific speed is provided to the specific method.

If provided with a single number, the speed is going to be constant. An array of two numbers can be provided as the minimum (first number) and the maximum (second number) speed. In case of an array provided, the speed is going to be random in the specified range.

  • type <number> | <number[]>

  • optional true

  • default [100, 500]

cursor

The cursor that is going to be displayed.

  • type <string>

  • optional true

  • default |

Methods

typeText()

Start typing the specified text in the given speed (if speed is not provided, the options speed will be used)

Syntax
txt.typeText(text[, className][, speed])
Parameters
  • text <string>: The text to be typed
  • className <string>: An optional class or set of classes to be applied (If you want to add multiple classes, separate them with space)
  • speed optional <number> | <number[]>: The typing speed
Return value
  • Promise

lineBreak()

Insert a line break

Syntax
txt.lineBreak()
Parameters

none

Return value
  • Promise

injectHTML()

Insert HTML element

Syntax
txt.injectHTML(htmlElement[, speed])
Parameters
  • htmlElement <HTMLElement>: The HTML element to be injected
  • speed optional <number> | <number[]>: The delay of the element injection
Return value
  • Promise

delete()

Delete the specified amount of letters from the begining of the text

Syntax
txt.delete(iterations[, speed])
Parameters
  • iterations <number>: The amount of letters to be deleted
  • speed optional <number> | <number[]>: The deletion speed
Return value
  • Promise

backspace()

Remove the specified amount of letters, starting from the end of the text

Syntax
txt.backspace(iterations[, speed])
Parameters
  • iterations <number>: The amount of letters to be removed
  • speed optional <number> | <number[]>: The deletion speed
Return value
  • Promise

moveCursor()

Place the cursor either at the begining or at the end of the text

Syntax
txt.moveCursor(point)
Parameters
  • point <string>: The point at which the cursor will be placed. Possible values: start / end (If any value other than start is provided, the cursor will be moved at the end of the text)
Return value
  • Promise

sleep()

Stop the execution for the given time

Syntax
txt.sleep(speed)
Parameters
  • speed optional <number> | <number[]>: The time of pause in milliseconds
Return value
  • Promise

Changelog

Checkout the CHANGELOG file