The Reports.JS scripts can be loaded from a CDN instead of being hosted with your application, which speeds delivery and simplifies updates.

Reference the scripts from a CDN.
<script src="https://cdn.jsdelivr.net/npm/stimulsoft-reports-js/Scripts/stimulsoft.reports.js"></script>
<script src="https://cdn.jsdelivr.net/npm/stimulsoft-reports-js/Scripts/stimulsoft.designer.js"></script>
<script src="https://cdn.jsdelivr.net/npm/stimulsoft-reports-js/Scripts/stimulsoft.viewer.js"></script>
Use them as usual once loaded.
var report = new Stimulsoft.Report.StiReport();
report.loadFile('../reports/SimpleList.mrt');

var designer = new Stimulsoft.Designer.StiDesigner();
designer.renderHtml('content');
designer.report = report;

How it works. The browser fetches the library from the CDN's edge cache, offloading delivery and keeping the scripts up to date with the published package.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.