UNPKG

systemjs-tools

Version:
25 lines (21 loc) 623 B
<!DOCTYPE html> <html lang="en"> <head> <title>I ❤️ SystemJS</title> <!-- Using unpkg --> <script src="https://unpkg.com/systemjs/dist/system.js"></script> <!-- Using JSPM --> <!-- <script src="/jspm_packages/system.js"></script> --> <!-- <script src="/jspm.config.js"></script> --> <!-- Using npm/yarn & systemjs-config-builder --> <!-- <script src="/node_modules/systemjs/dist/system.js"></script> --> <!-- <script src="/generated.config.js"></script> --> </head> <body> <div id="root"></div> <script> SystemJS.config({}) SystemJS.import('app.js') </script> </body> </html>