I used SystemJs with JSPM for all my profits and it feels amazing. It's easier than ever to use front-end libraries, with JSPM I can do this with a few simple steps:
- Command line: jspm install angular
- index.ts | js:
import * as angular from 'angular'
Does Webpack have something similar to a JSPM package manager, or is there only one option for using the standard npm package manager?
source
share