Key Takeaways
- Shepherd, developed by HubSpot, is a simple JavaScript library that aids in guiding users through an application tour, making the process of introducing an application to users more efficient and interactive.
- The library is open-source and doesn’t have any dependencies, making it a preferred choice for developers. It allows for the creation of steps, each with its own text, position, and actions, and provides an extensive API for customization.
- Despite its promising features, Shepherd has limited browser support, specifically for IE 9 . However, it can be a valuable tool for developers not planning to support older browsers. It also offers a simple API and clear documentation, making it accessible to developers of all skill levels.
Getting Started
Shepherd is open source and its code can be found on GitHub. The demo of Shepherd is also available on Hubspot. Let’s get started. For the impatient, here is the basic code to get started. This creates a one step tour of your application. This binds the dialog to the bottom of the element matched by the selector #id_selector.<span>var tour = new Shepherd<span>.Tour</span>({ </span> <span>defaults: { </span> <span>classes: 'shepherd-theme-arrows', </span> <span>scrollTo: true </span> <span>} </span><span>}); </span> tour<span>.addStep('myStep', { </span> <span>title: 'Hi there!', </span> <span>text: 'This would help you get started with this application!', </span> <span>attachTo: '#id_selector bottom', </span> <span>classes: 'shepherd shepherd-open shepherd-theme-arrows shepherd-transparent-text', </span> <span>buttons: [ </span> <span>{ </span> <span>text: 'Exit', </span> <span>classes: 'shepherd-button-secondary', </span> <span>action: function() { </span> <span>return tour.hide(); </span> <span>} </span> <span>} </span> <span>] </span><span>});</span>
Breaking Shepherd Down
Now that you’ve got the simple code running, let’s break the steps into pieces that we can understand.Includes
You need to include the single Shepherd JavaScript file. Shepherd also comes with a default theme, contained in a CSS file.<span><span><span><link> type<span>="text/css"</span> rel<span>="stylesheet"</span> href<span>="css/shepherd-theme-arrows.css"</span> /></span> </span><span><span><span><script> type<span >="text/javascript"</script></span> src<span>="./shepherd.min.js"</span>></span><span><span></span>></span></span></span>
Initialize Shepherd
The following code sample shows how a tour is created via JavaScript. Since you will be adding steps to your tour shortly, the defaults option in the initialization adds those options to all your steps, unless you override them:tour <span>= new Shepherd<span>.Tour</span>({ </span> <span>defaults: { </span> <span>classes: 'shepherd-theme-arrows', </span> <span>scrollTo: true </span> <span>} </span><span>});</span>
Creating Steps
Let’s check out that “getting started” code again. Here is the code that initiates a single step of the tour:tour<span>.addStep('myStep', { </span> <span>title: 'Hi there!', </span> <span>text: 'This would help you get started with this application!', </span> <span>attachTo: '#id_selector bottom', </span> <span>classes: 'shepherd shepherd-open shepherd-theme-arrows shepherd-transparent-text', </span> <span>buttons: [ </span> <span>{ </span> <span>text: 'Exit', </span> <span>classes: 'shepherd-button-secondary', </span> <span>action: function() { </span> <span>return tour.hide(); </span> <span>} </span> <span>} </span> <span>] </span><span>});</span>You can attach an additional button if you plan to have multiple steps. The following is an example of how to use buttons if you have two steps:
tour<span>.addStep('step1', { </span> <span>... </span> <span>buttons: [ </span> <span>{ </span> <span>text: 'Exit', </span> <span>classes: 'shepherd-button-secondary', </span> <span>action: function() { </span> <span>return tour.hide(); </span> <span>} </span> <span>}, { </span> <span>text: 'Next', </span> <span>action: tour.next, </span> <span>classes: 'shepherd-button-example-primary' </span> <span>} </span> <span>] </span><span>}); </span> tour<span>.addStep('step2', { </span> <span>... </span> <span>buttons: [ </span> <span>{ </span> <span>text: 'Back', </span> <span>action: tour.back, </span> <span>classes: 'shepherd-button-example-primary' </span> <span>}, { </span> <span>text: 'Exit', </span> <span>classes: 'shepherd-button-secondary', </span> <span>action: function() { </span> <span>return tour.hide(); </span> <span>} </span> <span>} </span> <span>] </span><span>});</span>
Start the Tour
After setting the tour up, all that is left is to start it up!tour<span>.start();</span>
The API
Shepherd provides an extensive API, as well as documentation that explains its behavior. Here we’ll go through some useful calls.Tour Instances
First, create the tour as shown below.myTour <span>= new Shepherd<span>.Tour</span>({ options })</span>Now, we are going to see how we can work with this instance. steps and defaults are the options of the tour instance. Its methods are described below.
- addStep(id, options) – As we saw above, a step is created by assigning an ID to it, then adding options such as text or buttons, which are described later.
- getById(id) – This method is used to select any particular step by its ID.
- show(id) – Show a particular step by ID.
- on(event, handler) – Binds an event to your tour. This is similar to jQuery’s bind() method.
- off(event, handler) – Unbinds an event.
Steps
Although we have added steps before, let’s take a closer look. The following list describes the options you can define.- title– You may or may not apply a title.
- text – The text to be shown in the step.
- attachTo – This has two parts: the selector of the element where the step is to be attached, and the position to attach the step to (i.e. #id_selector bottom).
- classes – Extra classes to add to your dialog. This depends on the theme you are using.
- buttons – The list of buttons to be shown. Each button has a text, additional classes to be added to it, and an action to be performed when clicking the button.
- show() – Show a step.
- hide() – Hide a step.
- cancel() – Hide step and cancel the tour.
- complete() – Hide step and complete the tour.
- destroy() – Destroys a step.
- on(event, handler) – Binds an event.
- on(event, handler) – Unbinds an event.
Conclusion
Although Shepherd looks pretty promising, one hiccup I have noticed is the browser support of IE 9 . But if you don’t plan to support old browsers, then give it a try. You can find a live demo based on this article’s code on GitHub. The demo can be further modified. You could try binding event handlers for the arrow keys to the Shepherd navigation. You could also make CSS classes and attach them to different elements to shift focus from one element to another.Frequently Asked Questions (FAQs) about Application Shepherd
What is Application Shepherd and how does it differ from Shepherd.js?
Application Shepherd is a JavaScript library that guides users through your app. It’s different from Shepherd.js in that it’s designed to be more user-friendly and easier to implement. While Shepherd.js is a powerful tool, it requires a deeper understanding of JavaScript to use effectively. Application Shepherd, on the other hand, is designed to be accessible to developers of all skill levels, with a simple API and clear documentation.
How do I install Application Shepherd?
Installing Application Shepherd is straightforward. You can install it via npm using the command npm install application-shepherd. Once installed, you can import it into your project using import Shepherd from 'application-shepherd'.
Can I customize the look and feel of the guides created with Application Shepherd?
Yes, Application Shepherd allows for extensive customization. You can change the color, size, position, and more of the guide elements. This allows you to create guides that match the look and feel of your app, providing a seamless user experience.
How does Application Shepherd handle complex, multi-step guides?
Application Shepherd is designed to handle complex guides with ease. You can create multi-step guides that guide users through a series of tasks. Each step can have its own text, position, and actions, allowing you to create detailed, interactive guides.
Can I use Application Shepherd with my existing codebase?
Absolutely. Application Shepherd is designed to be easy to integrate with existing codebases. It’s a standalone library, so it doesn’t require any specific framework or technology to use. You can simply import it into your project and start creating guides.
How does Application Shepherd compare to other user guide libraries?
Application Shepherd stands out for its ease of use and flexibility. While other libraries may require more technical knowledge to use effectively, Application Shepherd is designed to be accessible to developers of all skill levels. It also offers extensive customization options, allowing you to create guides that match the look and feel of your app.
Is Application Shepherd mobile-friendly?
Yes, Application Shepherd is designed to work well on both desktop and mobile devices. The guides automatically adjust to fit the screen size, ensuring a great user experience on all devices.
Can I use Application Shepherd for onboarding new users?
Yes, Application Shepherd is an excellent tool for onboarding new users. You can create detailed, step-by-step guides that walk new users through your app, helping them understand how to use it effectively.
How do I update or modify guides created with Application Shepherd?
Updating or modifying guides is easy with Application Shepherd. You can simply change the properties of the guide steps in your code, and the changes will be reflected in the guide. This allows you to keep your guides up-to-date as your app evolves.
Is there a community or support network for Application Shepherd?
While there isn’t a dedicated community or support network for Application Shepherd, you can find help and advice on general JavaScript and web development forums and communities. The documentation for Application Shepherd is also a great resource for learning how to use the library effectively.
The above is the detailed content of Introducing Your Application with Shepherd. For more information, please follow other related articles on the PHP Chinese website!

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

The differences in performance and efficiency between Python and JavaScript are mainly reflected in: 1) As an interpreted language, Python runs slowly but has high development efficiency and is suitable for rapid prototype development; 2) JavaScript is limited to single thread in the browser, but multi-threading and asynchronous I/O can be used to improve performance in Node.js, and both have advantages in actual projects.

JavaScript originated in 1995 and was created by Brandon Ike, and realized the language into C. 1.C language provides high performance and system-level programming capabilities for JavaScript. 2. JavaScript's memory management and performance optimization rely on C language. 3. The cross-platform feature of C language helps JavaScript run efficiently on different operating systems.

JavaScript runs in browsers and Node.js environments and relies on the JavaScript engine to parse and execute code. 1) Generate abstract syntax tree (AST) in the parsing stage; 2) convert AST into bytecode or machine code in the compilation stage; 3) execute the compiled code in the execution stage.

The future trends of Python and JavaScript include: 1. Python will consolidate its position in the fields of scientific computing and AI, 2. JavaScript will promote the development of web technology, 3. Cross-platform development will become a hot topic, and 4. Performance optimization will be the focus. Both will continue to expand application scenarios in their respective fields and make more breakthroughs in performance.

Both Python and JavaScript's choices in development environments are important. 1) Python's development environment includes PyCharm, JupyterNotebook and Anaconda, which are suitable for data science and rapid prototyping. 2) The development environment of JavaScript includes Node.js, VSCode and Webpack, which are suitable for front-end and back-end development. Choosing the right tools according to project needs can improve development efficiency and project success rate.

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
