Please suggest a good video (maybe with github example) on systemjs for server side (nodejs).
- Should cover basics of systemjs
- jspm integration
- ecmascript
- simple web server
Please suggest a good video (maybe with github example) on systemjs for server side (nodejs).
You do not use systemjs server side.
Node uses commonJs by default for modularity allowing you to do require statements to load a module.
Systemjs is for client side and implements the es6 approach to modularity but is available now
Angular2 I believe adopts systemjs to support modularity but systems us can be used freely in for example bog-standard Angular or any other framework.
To see systemjs client side in angular1 refer to my GitHub repo danday74 it's obvious which repo you need.
Systemjs allows you to either import a module at the top of your file or to load a module dynamically for example on the click of a button.