GitXplorerGitXplorer
g

jspm-demo

public
3 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
ae9ce0f78e408e503a2620127045c8bf1a15a5f5

Merge pull request #2 from masondesu/patch-1

gguybedford committed 10 years ago
Unverified
3aa8e23c15d9f5c4b73d2ffca0542269bbdd9537

Fixed a typo in the "Reproduce this Demo" section

mmason-stewart committed 10 years ago
Unverified
a76a1b8fe701535253ea08009151016dec3c0495

Merge pull request #1 from timaschew/master

gguybedford committed 10 years ago
Unverified
862f2ed49e5052d374d98e84e78457bc24392574

update config and package.json when using defaults during jspm init

ttimaschew committed 10 years ago
Unverified
5ca276d38477f2881db261ae5c3fab1abfeb9e14

split commands: serving files and open localhost

ttimaschew committed 10 years ago
Unverified
0704d0fbc6cda649233fe34cb8c40493d7d99b3c

use current jspm defaults settings (when running jspm init)

ttimaschew committed 10 years ago

README

The README file for this repository.

jspm Demo

Setup:

  npm install jspm -g
  git clone git@github.com:guybedford/jspm-demo
  cd jspm-demo
  jspm install
  python -m SimpleHTTPServer
  open http://localhost:8000

To use the bundled version, remove the comments in config.js and index.html.

The ES6 markdown component is installed from https://github.com/guybedford/markdown-component.


Reproduce this demo from scratch:

Assuming app.js, index.html and a package.json exist already.

jspm init               # default to all, just hit ENTER
jspm install css        # use jspm css loader plugin
jspm install bootstrap  # install bootstrap via jspm registry map
jspm install github:guybedford/markdown-component
jspm install npm:voxel-demo
jspm bundle app app-bundle.js
jspm bundle voxel-demo voxel-bundle.js