jspm CLI
Registry and format agnostic JavaScript package manager.
See https://jspm.io for a full introduction and documentation.
For support, join the Gitter room or Google Group.
See the current release notes here including upgrade information.
Use jspm --help
to see the full up-to-date list of commands.
Example
jspm install npm:voxel-demo -y
jspm bundle voxel-demo -i
The above populates a jspm_packages
folder in the current directory, and generates a config.js
file containing the SystemJS loader configuration.
It then creates a bundle file for the full tree, and ensures it is loaded on demand.
We can then run this demo with:
<!doctype html>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('voxel-demo');
</script>
License
Apache 2.0