Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fernandomoraes/funhousejs

a fun house mv* javascript framework
https://github.com/fernandomoraes/funhousejs

Last synced: 13 days ago
JSON representation

a fun house mv* javascript framework

Awesome Lists containing this project

README

        

!!! Experimental Javascript Framework ;)
====================================

dependency inject:
```javascript
funhouse.module('app')
.factory('ApiProvider', function(){
return { get: function(resource){ do something... }}
})
.factory('PersonService', function(ApiProvider){
return { getAll: function() { ApiProvider.get('pessoas'); } }
})
.controller('PersonCtrl', function(PersonService){
console.log(PersonService.getAll());
})
```