Questions tagged [jspm-server]

Installation

You'll need NodeJS and NPM, then to install the jspm-server command-line utility globally:

npm install -g jspm-server

Usage from command line

Run jspm-server from your project's directory.

Additional parameters:

  • --no-browser - suppress automatic web browser launching
  • --quiet - suppress logging
  • --open=PATH - launch browser to PATH instead of server root
  • --port=8081 - open with port
  • --proxy=http://localhost:8080 - proxy a running server
  • --only-exts="" - watch only files with the specified extensions
  • --ignore-exts="" - exclude files with the specified extensions
2 questions
12
votes
1 answer

JSPM Server Error: Change occurred to a file outside SystemJS loading

I've got a JSPM managed app that works, but it will not auto-reload the changes in JSPM Server. Here's the simple index.html file:
mtyson
  • 8,196
  • 16
  • 66
  • 106
0
votes
0 answers

How to get jspm 17 build to behave the same way as jspm 16 bundle-sfx

I have this npm script jspm build src/cupidAnalytics.ts dist/cupidAnalytics.js --minify --skip-source-maps using "dependencies": { "jspm": "^0.17.0-beta.41" } but the output is producing TypeError: ramda_1.compose is not a…