Questions tagged [jspm]

jspm is a package manager for the SystemJS universal module loader, built on top of the dynamic ES6 module loader.

With jspm load any module format (ES6, AMD, CommonJS and globals) directly from any endpoint such as npm and github with flat versioned dependency management. Any custom endpoints can be created through the Endpoint API.
For development, load modules as separate files with ES6 and plugins compiled in the browser.
For production, optimize into a bundle, layered bundles or a self-executing bundle with a single command.

546 questions
0
votes
2 answers

Error message from "jspm install jquery"

I am working through the tutorial on the jspm.io site https://github.com/jspm/jspm-cli/wiki/Getting-Started All works fine until I get to item 3, where I try to execute jspm install jquery and I get this error message warn Error on getOverride for…
jradxl
  • 535
  • 1
  • 4
  • 20
0
votes
2 answers

Install SystemJs plugins in location

When I try to import a text file with import text from './some-text.txt!text'; I see the loader tries to fetch a text.js file from the root of the server. Can this location be different and can the plugin be installed with say jspm?
olanod
  • 30,306
  • 7
  • 46
  • 75
-1
votes
3 answers

-bash: jspm: command not found

I am trying to npm install JSPM, so that I can run jspm init, for instance. npm install -g jspm is unfortunately not enabling the jspm cli. npm install jspm --save-dev in project root, isn't doing the trick either. node -v = v6.2.1 npm -v =…
Charlie-Greenman
  • 1,469
  • 1
  • 16
  • 36
-1
votes
1 answer

How to update JSPM dependency for local component

I am developing component which is JSPM dependency for master application. I linked this component using jspm link and jspm install --link component for app. Everything works until i change dependencies in child component. I tried jspm update…
Yoorek
  • 1,003
  • 1
  • 12
  • 30
-2
votes
1 answer

systemjs variable from another file

I have two javascript files in my project. One (index.js) declares the Material object and the other (nav.js) adds a method to Material. I am using SystemJS to import both of these into my HTML page. When the page loads I am getting an error from…
krummens
  • 837
  • 2
  • 17
  • 38
-4
votes
2 answers

why use module loading in the backend?

I have been trying to find an answer why webpack cares about module loading on the backend. Is there a reason why this may be needed? Does JSPM do backend module loading as well?
Joe Saad
  • 1,940
  • 3
  • 22
  • 32
1 2 3
36
37