https://github.com/judus/maduser-container
https://github.com/judus/maduser-container
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/judus/maduser-container
- Owner: judus
- License: mit
- Created: 2020-12-03T11:24:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-04T23:53:41.000Z (about 2 years ago)
- Last Synced: 2025-02-07T08:32:46.691Z (4 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```