![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
cubekit-ioc
Advanced tools
import { IoCContainer } from 'cubekit-ioc'
import { MetaDecorator } from 'cubekit-meta'
const meta = new MetaDecorator
class Storage {}
class Config {}
class Fetcher {}
// This decorator does not replaces the class, just adds
// a flag to the __cubekitMeta__ static property, so you
// are able to test it without problems.
@meta.singleton()
class Es6Fetcher {
fetch(...args) {
return fetch(...args)
}
}
@meta.singleton()
@meta.types(Fetcher, Storage, Config)
class Api {
constructor(fetcher, storage, config) {
this.fetcher = fetcher
this.storage = storage
this.config = config
}
request(path, body) {
const url = `${this.config.baseUrl}/${path}`
const sessionKey = this.storage.getItem('sessionKey')
return this.fetcher.fetch(url, {
body,
headers: { 'X-Session': sessionKey },
})
}
}
@meta.singleton()
@meta.types(Api)
class CartApiUtils {
constructor(api) {
this.api = api
}
addItem(item) {
return this.api.request('cart/add-item', { item })
}
}
const ioc = new IoCContainer
// Bind some specific class to an "interface"
ioc.bind(Fetcher, Es6Fetcher)
// Define singleton and set its instance at the same time
ioc.instance(Storage, localStorage)
ioc.instance(Config, {
baseUrl: 'http://example.com/api/v1',
})
// Instantiate CartApiUtils. All deps will be recursively resolved by the ioc
const cartUtils = ioc.make(CartApiUtils)
cartUtils.addItem({ name: 'apple', qty: 1 })
FAQs
Cubekit IoC Container
The npm package cubekit-ioc receives a total of 1 weekly downloads. As such, cubekit-ioc popularity was classified as not popular.
We found that cubekit-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.