
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
vue-processor
Advanced tools
A Vue utility to asynchronously process large amounts of data without blocking the UI. Supports both Vue 2 & Vue 3
VueProcessor allows you process large amounts of data without blocking the UI.`
npm i vue-processor
# or
yarn add vue-processor
import { createApp } from 'vue'
import App from './App.vue'
import VueProcessor from 'vue-processor'
const app = createApp(App)
app.use(VueProcessor)
app.mount('#app')
import Vue from 'vue'
import VueProcessor from 'vue-processor'
Vue.use(VueProcessor)
Install with global options (options)
let options {
maxTime: 500, // Max time (in milliseconds) per chunk. Default: 200ms
delay: 2 // Timeout delay (in milliseconds). Defaults to 1ms
}
Vue.use(VueProcessor, options)
Vue.$processor(largeArray, (item, index) {
// Your code here.
}).then(() => {
// processing complete
})
methods: {
yourMethod () {
this.$processor(largeArray, (item, index) {
// Your code here.
}).then(() => {
// processing complete
})
}
}
<template>
<button
@click="doSomethingBig"
>
Lets make them all count to 1 million
</button>
</template>
<script>
export default {
data () {
return {
running: false,
arr: [{
count: 1
}, {
count: 2
}, {
count: 3
}, {
count: 4
}, {
count: 5
}, {
count: 6
}, {
count: 7
}, {
count: 8
}, {
count: 9
}, {
count: 10
}, {
count: 11
}, {
count: 12
}, {
count: 13
}, {
count: 14
}, {
count: 15
}, {
count: 16
}, {
count: 17
}, {
count: 18
}]
}
},
methods: {
doSomethingBig () {
this.running = true
this.$processor(this.arr, (item, index) => {
for (var i = item.count; i <= 1000000; ++i){
item.count = i
}
}).then(() => {
this.running = false
})
}
}
}
</script>
FAQs
A Vue utility to asynchronously process large amounts of data without blocking the UI. Supports both Vue 2 & Vue 3
The npm package vue-processor receives a total of 2 weekly downloads. As such, vue-processor popularity was classified as not popular.
We found that vue-processor 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.