https://github.com/zefirka/doqe
https://github.com/zefirka/doqe
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zefirka/doqe
- Owner: zefirka
- Created: 2015-07-28T10:08:18.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-06T13:35:15.000Z (almost 11 years ago)
- Last Synced: 2025-06-23T16:38:47.622Z (about 1 year ago)
- Size: 125 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# doqe
## Usage
### doqefile.js
```js
var doqe = require('doqe');
doqe.set('mp', doqe.library(['method', 'property']));
doqe.set('front', doqe.library({
Angular: {
Directives: {
Directive : doqe.get('mp'),
Dependencies : doqe.link()
},
Secrvies : {
Service: doqe.get('mp'),
Dependencies : doqe.link()
},
Controllers : {
Controller : doqe.get('mp'),
Dependencies : doqe.link()
}
},
CSS : {
Blocks : {
Block : 'rules'
}
},
Launcher : 'static'
}));
doqe.books({
front : doqe.get('front'),
back : doqe.get('back')
}).main('front');
module.exports = doqe.export();
```