
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
vue-requests
Advanced tools
A modern fetch plugin for Vue.js with easy config config and hooks
npm install vue-requests
import Vue from 'vue'
import VueRequests from 'vue-requests'
Vue.use(VueRequests, options)
Headers can contain any custom headers you'd like to include in your requests. The values can be properties or methods (ie. their values can either be functions, literals, or references). Use functions for values that may change over time, such as Vuex getters.
import store from './store'
const Identity = {
$oid: '4234c0a877ccf94401baz'
}
const options = {
headers: {
Authorization() {
return store.getters.auth_token
},
Refresh: 'example_refresh_token',
Identity
}
}
Vue.use(VueRequests, options)
Before hook to fire before each request. The hook uses async/await, so asynchronous hooks will complete before the actual request is made. This is particularly useful for checking if you have expired tokens and refreshing them before a request.
Here's an example of a before hook checking for expired tokens and attempting to refresh before the original request:
// import moment from 'moment'
import store from './store'
const token = {
id: '1234567890',
expires: '2017-09-30T01:44:19.273Z'
}
const options = {
async before() {
if (new Date(token.expires) >= new Date()) {
await store.dispatch('refresh_tokens')
}
}
}
Vue.use(VueRequests, options)
Timeout hook to fire in the event of a timeout.
const options = {
timeout() {
alert('The request timed out.')
}
}
Vue.use(VueRequests, options)
Duration in ms for fetch timeout limit.
const options = {
timeout_duration: 25000
}
Vue.use(VueRequests, options)
import Vue from 'vue'
export default {
mounted() {
this.fetch()
},
methods: {
async fetch() {
const response = await this.$request('/data')
this.$store.dispatch('set_data', response)
},
save() {
const response = await this.$request('/data', {
method: 'put',
body: {
foo: 'bar'
}
})
}
}
}
The request function accepts the following parameters:
The base url to make relative requests from. If an absolute url is passed to the request function, this will be overriden.
The options parameter accepts the following parameters:
The method of the request (get (default), put, post, delete, options)
The body of the request
Custom headers to add to the request
If you need access to the response headers, you can pass the responseHeaders option to the request method, which will result in the promise being resolved with an object containing body and headers.
this.$request('/data', {
responseHeaders: true
})
.then(response => {
console.log(response.body, response.headers)
})
# install dependencies
npm install
# serve demo at localhost:8080
npm start
# run tests with jest
npm test
For detailed explanation on how things work, checkout the guide and docs for vue-loader.
FAQs
Another fetch plugin for Vue
The npm package vue-requests receives a total of 26 weekly downloads. As such, vue-requests popularity was classified as not popular.
We found that vue-requests 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
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.