New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

siteguide.js

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

siteguide.js

Open source library made with vanilla Javascript and CSS to help you build website guides and onboarding tours.

0.8.2
latest
Source
npm
Version published
Weekly downloads
222
14.43%
Maintainers
0
Weekly downloads
 
Created
Source

Siteguide.js

Siteguide.js is an open source library made with vanilla Javascript and CSS to help you build website guides and onboarding tours.

Siteguide empowers you to create personalized tours and interactive guides for users within your application or website. With its simple and minimalistic design, Siteguide offers extensive customization options while remaining user-friendly and intuitive.

Installation

npm install siteguide.js --save

Quick Start Example

The following example is a simple tour with two steps.

import { Tour } from 'siteguide.js';

const tour = new Tour({
    scrollTo: {
        behavior: 'smooth',
        block: 'center',
        inline: 'center',
    },
});

const stepList = [
    {
        id: '1',
        host: '.step-1',
        popup: {
            text: "I'm step 1",
            title: 'Step 1',
            type: 'text',
        },
    },
    {
        id: '2',
        host: '.step-2',
        popup: {
            title: 'Step 2',
            text: "I'm step 2",
            type: 'text',
        },
    },
];

tour.addSteps(stepList);

tour.start();

License

Siteguide.js is open source and free to use under the MIT license. See the LICENSE file for more information.

Keywords

siteguide

FAQs

Package last updated on 07 Mar 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