Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
46 lines (36 loc) · 1.02 KB

README.md

File metadata and controls

46 lines (36 loc) · 1.02 KB

Future Web Applications

ECMAScript vNext and more

Here you can find the presentation slides and the demo code shown in the presentation.

26 September, 2015 @ NetPonto Porto Meeting #7

How to Start

  1. Install/Update node packages
npm update
  1. Update loader dependencies
jspm dl-loader
  1. Update jspm packages
jspm update
  1. Create your distribution files

    1. Create production distribution (use config.js on index.html)
    gulp release
    
    1. Create development distribution (use config-dev.js on index.html)
    gulp watch
    
  2. Initialize Kestrel server

    1. (optional) Restore packages if necessary
    dnu restore
    
    1. Start server
    dnx kestrel
    
  3. Open your Application (default url is http://localhost:5000/index.html)