Search code examples
systemjs

Require not working ( SystemJS)


I am very new to systemJS and trying to explore it. Cant we call require as shown in the below inside HTML. When i call require() function inside JS files it loads JS file properly but inside HTML file it does not work..

Below is the SystemJS code on my HTML

System.config({ map: { Customerx: 'Customer.js' }  });

SystemJS.import('Customerx').then(function (m) {
var x = require("Customerx"); //<-- this works inside JS files but not here why  });

Solution

  • Closing this issue. Require() is not available on the windows its scoped in each file.

    https://github.com/systemjs/systemjs/issues/1442