Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
compact-ioc
Advanced tools
npm install --save compact-ioc
// container.js
import CompactIOC from '../src/CompactIOC';
export default new CompactIOC();
// Foo.js
import container from './container';
export default class Foo {
constructor() {
this.foo = 'foo';
}
}
Foo.factory = () => new Foo();
container.pub('Foo', Foo.factory);
// Bar.js
import container from './container';
export default class Bar {
constructor(foo) {
this.bar = foo.foo + 'bar';
}
}
Bar.factory = (foo) => new Bar(foo);
Bar.factory.deps = [ 'Foo' ];
container.pub('Bar', Bar.factory);
Copyright (c) 2016, rand0me not.randome@gmail.com
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
FAQs
Compact Inversion of Control implementation
The npm package compact-ioc receives a total of 0 weekly downloads. As such, compact-ioc popularity was classified as not popular.
We found that compact-ioc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.