
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@schorts/driver-tour-guide
Advanced tools
A framework-agnostic guided tour adapter built on top of [`driver.js`](https://driverjs.com/), designed to work seamlessly with the TourGuide abstraction from [`@schorts/shared-kernel`](https://github.com/schorts99/shared-kernel). Compose onboarding flows
A framework-agnostic guided tour adapter built on top of driver.js, designed to work seamlessly with the TourGuide abstraction from @schorts/shared-kernel. Compose onboarding flows with type-safe steps and launch interactive UI tours with minimal setup.
npm install --save @schorts/driver-tour-guide
driver.js requires its CSS to be loaded. You can import it directly from this package:
import "@schorts/driver-tour-guide/driver-styles";
Or inject it dynamically (optional):
import { injectDriverStyles } from "@schorts/driver-tour-guide"
injectDriverStyles();
import { driver, DriverTourGuide } from "@schorts/driver-tour-guide";
import { TourStep } from "@schorts/shared-kernel";
const steps: TourStep[] = [
{
title: "Welcome",
description: "This is the starting point",
side: "BOTTOM",
align: "CENTER",
},
{
element: "#next-button",
title: "Next Step",
description: "Click here to continue",
side: "RIGHT",
align: "START",
},
];
const tour = new DriverTourGuide(driver());
steps.forEach((step) => tour.addStep(step));
tour.startTour();
DriverTourGuideImplements the TourGuide interface from @schorts/shared-kernel.
addStep(step: TourStep): TourGuide — Adds a single step to the tour.
startTour(): void — Launches the tour using driver.js.
Defined in @schorts/shared-kernel:
type TourStep = {
element?: string;
title: string;
description: string;
side: "TOP" | "RIGHT" | "BOTTOM" | "LEFT";
align: "START" | "CENTER" | "END";
}
LGPL
FAQs
A framework-agnostic guided tour adapter built on top of [`driver.js`](https://driverjs.com/), designed to work seamlessly with the TourGuide abstraction from [`@schorts/shared-kernel`](https://github.com/schorts99/shared-kernel). Compose onboarding flows
We found that @schorts/driver-tour-guide demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.