This is a simple prototype and shouldn't be used in production.
Run npm install
Run npm run build
Use rr.bundle.js and rr.style.css in your project
// element to attach the slider to
var anchor = document.getElementById('slider-container');
// create our dual range slider
RangeRider({
anchor: anchor,
range: [0, 10],
start: [0, 10]
});