
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@vueaction/javascript
Advanced tools
Core repository for contracts and implementations of VueAction
VueAction aims to abstract the "play" between vue and the backend.
To start, it will be solely focused on using the composition API and aim to have implementations for:
I'll likely focus on support for GraphQl when those three are implemented.
The idea, is that you'll be able to easily "sync" your frontend and backend data with code like this:
<script setup>
const { form, create, creating, error } = useModel(Todo)
</script>
<template>
<input v-model="form.title">
<button :disabled="creating" @click="create">create</button>
<span v-if="creating">creating...</span>
<span v-if="error">{{ error.message }}</span>
</template>
Yes, related data too!
const { include, fetch, fetching, errors, collection: todos } = useModelCollection(TodoList)
include.value = [
'author',
'todos.comments'
]
async function fetchTodos () {
await fetch()
console.log(errors)
console.log(todos.value)
}
Note the consle.log(todos.value). This library will also manage state (using Vuex ORM... but state will also adhere to contracts that we'll be able to swap out!)
Code like the above always works the same way, and the final abstraction can be unified among backends! And that's the goal of this library: Frontend/Backend Unification
Stay tuned!
FAQs
VueAction, Javascript implementation
The npm package @vueaction/javascript receives a total of 2 weekly downloads. As such, @vueaction/javascript popularity was classified as not popular.
We found that @vueaction/javascript demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.