![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.
@spon/connect
Advanced tools
npm install @spon/core @spon/connect --save
or yarn add @spon/core @spon/connect --save
Peer Dependency
See @spon/core for documentation
You’ll need to know how to use rematch to use this feature. Spon.js exposes a hook for subscribing to store updates. It uses the connect function to bind the store state and reducers to the module
/store/index.js
import { init } from '@rematch/core'
import connectStore from '@spon/connect'
const store = init({
models: {
count: {
state: 0, // initial state
reducers: {
increment(state, payload) {
return state + payload
}
}
}
}
})
// this creates a function that is used to bind modules to the store
export const connect = connectStore(store)
export default store
/behaviours/example
import { connect } from '@/store'
import { domEvents, withPlugins } from '@spon/plugins'
function counter({ plugins: { addEvents }, store, subscribe }) {
const node = document.getElementById('value')
addEvents({
'click button': () => {
store.dispatch.increment(1)
}
})
subscribe(
({ current }) => {
node.textContent = current.count
},
['count'] // dependencies
)
}
const mapState = store => {
return {
count: store.count
}
}
const mapDispatch = ({ count }) => ({ ...count })
export default withPlugins(domEvents)(
connect({ mapState, mapDispatch })(counter)
)
FAQs
spon
The npm package @spon/connect receives a total of 25 weekly downloads. As such, @spon/connect popularity was classified as not popular.
We found that @spon/connect 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.