Installation clarification
Installation clarification

In the NPM Packages install guide, it states:
Note that using require('datatables.net-buttons')(); will include only the code Buttons library, and not the button definitions (such as column visibility, file exporting and print view). These button definition files can be optionally included using:
Javascript
require( 'datatables.net-buttons/js/buttons.colVis.js' )(); # Column visibility
require( 'datatables.net-buttons/js/buttons.html5.js' )(); # HTML 5 file export
require( 'datatables.net-buttons/js/buttons.flash.js' )(); # Flash file export
require( 'datatables.net-buttons/js/buttons.print.js' )(); # Print view button
Where should one put these require statements?
TIA.
Tex
Answers
It depends on how you have your Node application set up. Here's a reference on using npm packages.