A progress bar that fills up as you scroll down the page in your browser.
npm install scroll-fever --save
In your application's javascript file:
// pre-browserify.js
var ScrollFever = require('scroll-fever')
new ScrollFever()
Add styles:
#scroll-fever {
position: fixed;
top: 0;
left: 0;
width: 0;
height: 6px;
background: red;
}
Use browserify to bundle it up for the browser:
browserify pre-browserify.js -o post-browserify.js
See the demo directory in the repo.