Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/fernandomoraes/funhousejs
- Owner: fernandomoraes
- Created: 2014-08-30T18:59:56.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-06T16:59:53.000Z (about 10 years ago)
- Last Synced: 2024-10-10T22:48:57.352Z (27 days ago)
- Language: JavaScript
- Size: 152 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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());
})
```