
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.
vue-plugin-timers
Advanced tools
A Vue.JS plugin/mixin that helps set timeouts and heartbeats in your Vue components
Say we create a vue.js component
export default {
data: {
minutes: new Date().getMinutes()
}
}
What if we want minutes to update along with the user's clock when this component is open.
export default {
get minutes() {
return new Date().getMinutes()
}
}
But, unfortunately this does not work.
Reason ?
new Date() or Date.now() type of objects are not reactive
We get their value once, but it doesn't update every minutes/second or so
With vue-plugin-timers we can create a timers option in Vue
components. Timers run a method in your component every x seconds
(where you can choose x).
We can activate timers in two ways
As a Component Mixin in any component
// @/components/AwesomeComponent.vue <script>
import { VueTimersMixin } from 'vue-plugin-timers'
export default {
mixins: [VueTimersMixin],
...,
timers: { ... }
}
As a global Vue Plugin if you want to use in multiple components
// @/main.js
import Vue from 'vue'
import VueTimers from 'vue-plugin-timers'
Vue.use(VueTimers)
You can use timers property in all components now
// @/components/AnyComponent.vue <script>
export default {
...,
timers: { ... }
}
You can define timers in 2 ways -
timers property in component options (in single-file-component export or inside Vue.extend())vue-class-component, then there are @Timer decorators 🎉timers component option// @/components/AwesomeComponent.vue - <script>
export default {
data: {
time: new Date().toTimeString()
},
methods: {
updateTime() {this.time = new Date().toTimeString()}
},
timers: {
/* key = name of method */
updateMinutes: {
/* interval of delay (default: 1000) */
interval: 30000,
/* repeat (default: false)
true => setInterval,
false => setTimeout once */
repeat: true
}
}
}
@Timer decorator⚠️ IMPORTANT: This needs
vue-class-componentto be installed, (orvue-property-decorator)
import Vue from 'vue'
import Component from 'vue-class-component'
import { Timer } from 'vue-plugin-timer'
@Component
class TimerComponent extends Vue {
count = 0
@Timer({ interval: 200 })
incr() {
this.count++
}
}
The @Timer decorator takes all the same options as the
timers component options hashes do. Except the method name, because
you are decorating the method itself and so it is not needed
NOTE: The umd builds do NOT have the decorator, as decorators are something we usually use when building with Vue CLI using Babel and/or Typescript
FAQs
Interval and Timeout timers for Vue as a plugin or mixin
We found that vue-plugin-timers 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.