Faced the problem of connecting js libraries, here’s how I connect:
<script> require('jquery') require('popper.js') require('bootstrap-beta') </script> When building a project in the desktop application, this error crashes:
Uncaught ReferenceError: $ is not defined at Object.<anonymous> (/home/misha/summary/node_modules/bootstrap-beta/dist/js/bootstrap.js:3920:6) at Object.<anonymous> (/home/misha/summary/node_modules/bootstrap-beta/dist/js/bootstrap.js:3922:3) at Module._compile (module.js:571:32) at Object.Module._extensions..js (module.js:580:10) at Module.load (module.js:488:32) at tryModuleLoad (module.js:447:12) at Function.Module._load (module.js:439:3) at Module.require (module.js:498:17) at require (internal/module.js:20:19) at file:///home/misha/summary/main.html:109:5 Any idea how to get around this? thank you in advance.