
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
vuex-module
Advanced tools
Module that turns vuex modules into poetry.
import { VuexModule } from 'vuex-module'
import shop from '../../api/shop'
const { state, getter, action, mutation, build } = new VuexModule('products')
state({ all: [] })
getter(function all() {
return this.state.all
});
action(function fetch() {
return shop.getProducts(products => {
this.commit('fetch', products)
})
})
mutation(function fetch(products) {
this.state.all = products
})
export default build()
Getters, actions and mutations will be prefixed with with
module name resulting with: products/all, and
products/fetch methods.
You can then use VuexModule mappers to map namespaced methods to your components.
export default {
computed: mapGetters({ products: 'all' }, 'products'),
methods: mapActions(['fetch'], 'products')
}
Inside mutations state is available via this. This simplifies function
declaration and makes code more readable. Same goes for getters and
actions (context, commit, rootState, rootGetters).
MIT
FAQs
Turn vuex modules into poetry.
We found that vuex-module demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.