0.1.0 • Published 9 years ago

essential-riot v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

#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();
})