Several javascript projects / SDKs are migrating to modular javascript, and deprecating namespaced web javascript SDKs, so we get better performance when being packaged and used within apps.
An example are Google APIs: https://firebase.google.com/docs/web/modular-upgrade - or AWS Amplify https://docs.amplify.aws/lib/project-setup/create-application/q/platform/js/#install-amplify-libraries
To use these javascript libraries/SDKs, we must import them into projects using npm or yarn and bundle using webpack. At the very least they need to be imported as <script type="module" .../>. To use them in JavaScript nodes, it is often hard to reference the functions exposed by these modules (given the need to import { xxx } from 'lib', instead of having globally available namespaced objects)
OutSystems should have a guideline and/or easier way to import, package and use javascript modules, so it is easier to create and package low-code reactive libraries that leverage the large majority of modern javascript SDKs available for SaaS/PaaS services.