0

How to set a Aurelia minimal project for work inside Browser
(no http server) how to set a bare minimum aurelia system/boilerplate
to work just inside browser (no NodeJS)
mainly for understanding/learning purpouses


  • no NodeJS (using just Javascript from latest browsers, advise Firefox Developper)
  • no npm (just download latest version and copy minimum files)
  • no folders (all in root flat folder for clarification and learn purpouses)
  • just ES6/7 (no Typescript, no Babel, etc)
  • just CSS use (no SASS, no LESS, etc.)
ZEE
  • 2,931
  • 5
  • 35
  • 47

2 Answers2

3

You should read the Quick Start in the docs and download the Basic Project Setup

However, there's no way to use ES6/7 without Babel (or other js compiler) today.

Fabio
  • 11,892
  • 1
  • 25
  • 41
  • without using Babel what ES version can I use ?ES5 ?ES6 – ZEE Apr 20 '17 at 20:29
  • 3
    You can use ES5. But trust me, if you want to use a mordern js framework, go with ES6/7 or Typescript. The basic project I've mentioned is configured to use babel transpiler on-the-fly, so you don't have to worry about any tooling or configuration. That's gonna be transparent for you ;) – Fabio Apr 21 '17 at 03:52
  • Obrigado Fabio... se tiveres mais informação sobre isto que queiras acrescentar agradeço... abraço! – ZEE Apr 21 '17 at 13:41
0

Take a look at this github repo: aurelia/aurelia which has a simple starter kit with a concatenated script-tag ready build.

Roger Doll
  • 51
  • 5