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

react-interactive-tour

v1.0.0

Published

react-interactive-tour is a lightweight and highly customizable library for creating interactive guided tours in your ReactJs and NextJs applications. Enhance user onboarding and feature discovery with step-by-step instructions and visually appealing tour

Downloads

33

Readme

react-interactive-tour

react-interactive-tour is a lightweight and highly customizable library for creating interactive guided tours in your ReactJs and NextJs applications. Enhance user onboarding and feature discovery with step-by-step instructions and visually appealing tour components.

Live Demo

Install

npm install react-interactive-tour

or

yarn add react-interactive-tour

Key Features:

  • Easy to Use: Simple component to create tours quickly.

  • Highly Customizable: Customize the look and feel to match your application's design.

  • Flexible Positioning: Position tooltips relative to elements with various options.

  • Responsive Design: Ensure tours look great on all devices.

  • Step Control: Control the flow of the tour with next, previous, and finish actions.

How to use:

Wrap entire react app into ReactTourProvider component :

import MyCom from './Components/MyCom'
import ReactTourProvider from 'react-interactive-tour';

function App() {

  return (
    <>
        <ReactTourProvider cache={true}>
            <MyCom / >
        </ReactTourProvider>
    </>
  )
}

export default App

Properties

| Property | Type | Required | Default Value | Description | |-------------------------|----------------|----------|--------------------|------------------------------------------------------| | backgroundColor | string | No | #fff | Background color of the tour overlay. | | buttonTextColor | string | No | #4285f4 | Text color of the tour navigation buttons. | | buttonBackgroundColor | string | No | #4285f4 | Background color of the tour navigation buttons. | | cache | boolean | Yes | false | Determines if the tour state should be cached. | | children | ReactElement | Yes | - | The content or components that the provider wraps. |

Wrap ReactTour component to your component:

import ReactTour from 'react-interactive-tour';
import {ShimmerButton} from "shimmer-effect-react";

function Page() {

  return (
    <>
        <ReactTour index={0} position='top' body={<div><strong>React Interactive Tour</strong><br />Welcome to react interactive tour.</div>}>
            <ShimmerButton size='lg' mode="light" />
          </ReactTour>
    </>
  )
}

export default Page

Properties

| Property | Type | Required | Default Value | Description | |-----------|---------------------------------------|----------|---------------|-------------------------------------------------| | index | number | Yes | - | The step index in the tour sequence. | | position| "top" \| "right" \| "bottom" \| "left" | Yes | - | The position of the tooltip relative to the target element. | | body | ReactElement | Yes | - | The content to display in the tooltip. | | children| ReactElement | Yes | - | The target element around which the tooltip will be displayed. |

More Features Coming Soon:

Stay tuned for exciting updates and expansions to the react-interactive-tour library! Our team is hard at work developing additional components and features to further enhance your experience with react tour in React applications. Keep an eye on our roadmap for upcoming releases, and be the first to explore new functionalities as they become available.

Contributions and Feedback:

We welcome contributions, bug reports, and feature requests from the community. Whether you're interested in submitting a pull request, reporting a bug, or sharing your ideas for enhancements, your input is invaluable in shaping the future of the react-interactive-tour library. Thank you for your support and collaboration!