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

https://github.com/judus/maduser-container


https://github.com/judus/maduser-container

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# maduser-container

```js
const App = new Container({
components: {
some-arbitrary-name: {
class: TheClassToUse,
selector: '.some .selector .string',
options: {
any: 'options',
you: 'want',
to: 'inject'
}
},
some-arbitrary-name: {
class: TheClassToUse,
selector: '.some .selector .string',
options: {
any: 'options',
you: 'want',
to: 'inject'
}
}
}
});

App.initAll();
```