A library for adding coachmark onboarding to your web/mobile/hybrid/progressive app.
Install
npm install --save coachmarks
Usage
const coachmarks = require('coachmarks');
or
import coachmarks from'coachmarks';
coachmarks.add('start-button', {
target: '#start-button',
content: 'Click this button to get started!'.
});
document.addEventListener('DOMContentLoaded', () => {
coachmarks.show('start-button');
});
Notes
I think quadratic curve looks better than cubic, probably due to how I'm calculating stuff but still
Todo
Make script a node module
Allow configuring targets and text via JSON. (Multiple targets)
Allow configuring trigger events, or API
Add close button
Append CSS to page from inside module
SVG path getting clipped when it's mostly horizontal (chalk filter causing it). (Fixed in a very hacky way (5000px...))
BUG: when text is on right side of button, arrowhead is on left side of button instead of right side. And the start of the line is from the right side of the text, not left side.
Turn SVG stuff into content that gets appended to page on script load
If text is just a little bit above or below the button vertically, it will anchor to the top position when it should still be the side
Reorient arrowhead so its angle matches a straight line from start point to end point. (Done w/ quadratic curve)
Maybe allow anchoring arrow to corners of element as well as sides
Add basic (flexbox) positioning styles for text blocks (top, middle, bottom), (left, middle, center). Padding/margin can control the rest
Relative-size the arrow marker based on viewport size
Content needs to not scroll, which means scrolling elements into view.
Handle rezizing, orientation changes, and media query changes
Idea
FAQs
On-board new users to your app and introduce new features with SVG sketches (coachmarks)
The npm package coachmarks receives a total of 1 weekly downloads. As such, coachmarks popularity was classified as not popular.
We found that coachmarks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.It has 1 open source maintainer collaborating on the project.
Package last updated on 15 Dec 2017
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.
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.