We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the top of the docs it mentions lazy-loading, but I can't find anything in the docs regarding where and how is this available.
Sample use-cases would be nice as well :-)
The text was updated successfully, but these errors were encountered:
It lazy loads by default; there's no way to disable it.
let count = 0; bottle.factory('SoLazy', container => { count++; return {}; }); console.log(count); // 0 bottle.container.SoLazy; console.log(count); // 1
I guess it would make sense for me to spell that out in the readme; thanks for the suggestion!
Sorry, something went wrong.
No branches or pull requests
At the top of the docs it mentions lazy-loading, but I can't find anything in the docs regarding where and how is this available.
Sample use-cases would be nice as well :-)
The text was updated successfully, but these errors were encountered: