Hacker News new | ask | show | jobs
by atestu 4178 days ago
What is the difference between this and require.js for loading modules? I feel like I'm missing something
1 comments

require.js loads modules that are written to the CommonJS and AMD standards. systemjs loads those too, but it also loads a few other things including modules that just dump things in to global scope and things written to the ES6 standard.

It's sort of like require.js on steroids.

gotcha, thanks!