New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

app-walk

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

app-walk

An intuitive guided walkthrough library with UI highlighting and voice narration for web apps.

latest
npmnpm
Version
0.0.4
Version published
Maintainers
0
Created
Source

app-walk

An intuitive guided walkthrough library for web apps that combines UI component highlighting with voice narration.

✅ Seamlessly guide users through your app step-by-step.
✅ Highlight UI elements visually while narrating instructions.
✅ Fully customizable and easy to integrate.

Features

  • Highlight specific UI components to draw user attention.
  • Synchronized voice narration to explain each step.
  • Easy-to-use API to create multi-step guided tours.
  • Supports accessibility and smooth UX flow.

Installation

npm install app-walk

Usage

import { runActionSteps } from "app-walk";
import type { TStepAction } from "app-walk";
import { useNavigate } from "react-router";

const steps: TStepAction[] = [
  {
    element: "#login-form",
    beforeMessage: "Fill in email and password, and click submit.",
    afterMessage: "Done.",
  },
  {
    element: "#profile-menu",
    beforeMessage: "This is your profile menu where you can update settings.",
    afterMessage: "Done.",
  },
];

export default function Demo() {
  const navigate = useNavigate();

  return <button onClick={() => runActionSteps(steps, navigate)}>Start Walkthrough</button>;
}

Keywords

app-guide

FAQs

Package last updated on 24 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts