Package detail

essential-riot

jcouyang15MIT0.1.0

A minimal skeleton for building testable Riot apps using ES7 async function

skeleton, template, riot, muut

readme

Essential Riot

A minimal skeleton for building testable Riot apps using ES7 async function

start

  1. npm start
  2. open http://localhost:5555
  3. login with username oyang and password lulu

test

npm test

Howdy, async function, Bye, Flux

async function(){
  var todo = await db.getItems();
  this.title = todo.title
  this.items = todo.items;
  this.update();
})