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

new-react-typing-effect

v1.2.4

Published

A newer, more customizable typing effect component; written in Typescript.

Downloads

9

Readme

new-react-typing-effect

A new, more customizable typing effect component; written in Typescript.

Demo

Demo

How to use

import TypingEffect from 'new-react-typing-effect';

const Home: React.FC = () => (
  <TypingEffect
    messages={["Message 1", "Message 2", "Message 3"]}
    cursor="|"
    textRenderer={(text, renderedCursor, atIndex) => {
      return (
        atIndex % 2 === 0 ? 
        <h2 style={{ color: 'green' }}>{text}{renderedCursor}</h2> :
        <h2 style={{ color: 'blue' }}>{text}{renderedCursor}</h2>
      );
    }}
    cursorRenderer={(cursor) => (
      <span style={{ color: 'red' }}>{cursor}</span>
    )}
    options={{
      text: {
        charactersPerSecond: 2,
        fullTextDelayMS: 5000,
      },
    }}
  />
);

export default Home;

Types

The types are self-documenting (as everything is natively written in Typescript). But here's the props type w/ explanations for quick reference:

export type TypingEffectProps = {

  // The messages to cycle through
  messages: string[];

  // The cursor to display (instead of the default '|')
  cursor?: string;

  // The function that renders the final element
  textRenderer?: (text: string, renderedCursor: JSX.Element, atIndex: number) => JSX.Element;
  /***
   * NOTE: textRenderer is passed the renderedCursor as an argument, 
   * allowing you to place the cursor wherever you choose 
   * [including in the same element as the message]
  ***/

  // The function that renders the cursor (without worrying about opacity)
  cursorRenderer?: (cursor: string) => JSX.Element;

  // Configuration options
  options?: {

    // Cursor options
    cursor?: {
      // The number of milliseconds per cursor blink
      blinkPeriod?: number;
    };

    // Text options
    text?: {
      // Number of characters to type/delete per second
      charactersPerSecond?: number;

      // Delay in milliseconds when the message is empty
      emptyTextDelayMS?: number;
      
      // Delay in milliseconds when the message is full
      fullTextDelayMS?: number;
    };
  };
};

Motivation

I was trying to use the existing react-typing-effect package, but found the type definitions incomplete, and I basically had to write my own cursor functionality for what I wanted to be able to do (which was move the rendered cursor). So, I just decided to write my own version in Typescript. And I figure it may help out some other people in a similar situation.