
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
siteguide.js
Advanced tools
Open source library made with vanilla Javascript and CSS to help you build website guides and onboarding tours.
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.
npm install siteguide.js --save
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();
Siteguide.js is open source and free to use under the MIT license. See the LICENSE file for more information.
FAQs
Open source library made with vanilla Javascript and CSS to help you build website guides and onboarding tours.
The npm package siteguide.js receives a total of 220 weekly downloads. As such, siteguide.js popularity was classified as not popular.
We found that siteguide.js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.