I have an Ionic app and I\'d like to include the node module angular-base64 to use in my controllers, or even wrap inside an angular service etc. I\'ve gone ahead and ran >
Place the directory angular-base64/angular-base64.min.js in www/lib.
angular-base64/angular-base64.min.js
www/lib
Include the JS file in index.html (for example: .
index.html
Inject the module in app.js: angular.module('starter', ['base64']).
app.js
angular.module('starter', ['base64'])
Afterwards you should be able to use base64 everywhere in your app.
base64