0.0.5 • Published 9 years ago

appsoma-ide v0.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
9 years ago

Appsoma Cache Widget

The welder ide widget, used on appsoma welder

Contents

How to use

var IDE = require("appsoma-ide"); var ide = new IDE({file_dao:file_dao}); $("body").html(ide.render())

file_dao is an object that should have:

  • getContent(path,cb): Get contents of path and calls cb with the result
  • saveContent(path,contents,cb): Saves contents to path and calls cb with the result.
  • delete(path,cb): Deletes path and calls cb with the result