
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
A type-safe decentralized state management tool for vue3.
With the use of Composition API, business logic and state are gradually decentralized. The centralized state management tool (vuex) will become a burden. On the other hand, many people are now using Vue3's reactive-api to build stores, which reduced a lot of boilerplate code. But too flexible code can easily bring disasters in code maintainability and readability.
Therefore, I think there should be a tool to constrain the process of creating stores. It should combine the advantages of vue3 and vuex, be flexible, and have rules to follow.
// userProfile.js
import { createState } from 'vtate'
export const userProfile = createState({
name: 'userInfo',
initialState: {
username: 'futengda',
},
reducers: {
updateName: (state, payload) => {
state.username = payload
},
},
})
// main.js
import { useDispatch } from 'vtate'
import { userProfile } from './userProfile'
export default {
setup() {
const [dispatch, actions] = useDispatch(userProfile)
function changeUserName() {
// directly use string as action-name
dispatch('updateName', 'fxxjdedd')
// or, use actions.x to get action-name
dispatch(actions.updateName, 'fxxjdedd')
// or,directly modify reactive state
userProfile.username = 'fxxjdedd'
}
return () => {
return (
<div>
username: {userProfile.username} <br/>
<button onClick={changeUserName}>click</button>
</div>
)
}
}
}
MIT
FAQs
A type-safe decentralized state management tool for vue3.
We found that vtate 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.