Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
vue-computed-promise
Advanced tools
Plugin for Vue.js, allows promises to be returned for computed properties
Plugin for Vue.js, allows promises to be returned for computed properties
$ npm install vue-computed-promise
Add the plugin:
const VueComputedPromise = require('vue-computed-promise'); // alternatively use script tag
Vue.use(VueComputedPromise);
Now you can return a Promise from a computed property:
var vue = new Vue({
el: "#app",
data: {
one: 1,
two: 2
},
computed: {
oneplustwo: function() {
var _one = this.$data.one;
var _two = this.$data.two;
return new Promise(function(resolve, reject) {
setTimeout(0, function() {
resolve(_one + _two);
});
});
}
}
})
Until the Promise resolves, the value of null
is returned by the computed property.
In the example above oneplustwo
is never re-computed. The Promise will only be called once (or never if the property is not used in the template).
To return a Promise which may be re-computed when reactive dependencies change, you will need to return a function which in turn returns a Promise:
var vue = new Vue({
el: "#app",
data: {
a: 1,
b: 2,
calculating: false,
count: 0
},
computed: {
result: function() {
// these properties are reactive dependencies
var _a = Number(this.a);
var _b = Number(this.b);
return () => {
// properties only accessed within this function are not reactive dependencies
var data = this.$data;
data.calculating = true;
return new Promise(function(resolve, reject) {
setTimeout(function() {
resolve(_a + _b);
data.calculating = false;
data.count++;
}, 1000);
});
};
}
}
})
As the example shows, you also have control over which properties become dependencies: only properties accessed outside of the returned function will become dependencies.
I've only used this for a limited use case - but I'm happy to take pull requests to improve the plugin.
FAQs
Plugin for Vue.js, allows promises to be returned for computed properties
We found that vue-computed-promise 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.