$ npm i -S storm-guide
Sample minimum CSS required to show/hide each section
Either import and initialise using a named import:
import Guide from 'storm-guide';
Guide.init('.js-guide');
Or async using storm-load.js, add the .standalone file to your project, then initialise using the global name:
Load('/content/js/async/storm-guide.standalone.js')
.then(() => {
StormGuide.init('.js-guide');
});