New to using node and npm, I recently set up my main JavaScript file called app.js and configured webpack nicely.
Inside app.js, I currently have the following script:
//require in jquery
var $ = require('jquery');
//require a constructor function downloaded from npm
var WheelIndicator = require('wheel-indicator');
Now, I'm trying to figure out how to load mattbryson/TouchSwipe-Jquery-Plugin, which is a jQuery JavaScript library, into app.js.