Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
vue-google-picker
Advanced tools
Vue.js button to open the dialog of files from Google Drive using Google Picker API
Vue.js button to open the dialog of files from Google Drive using Google Picker API
npm install vue-google-picker --save-dev
Include the Google API Loader in your static file
<script type="text/javascript" src="https://apis.google.com/js/api.js"></script>
config
- Keys and Credentials of Google APIpicked
- When a file is picked. Return an object of selected filesExample:
<template>
<file-picker-button :config="gConfig" @picked="showDetails">
Open Google Drive Dialog
</file-picker-button>
</template>
<script>
import FilePickerButton from '../../vue-google-picker'
export default {
components: {
FilePickerButton
},
created() {
this.gConfig = {
// The Browser API key obtained from the Google API Console.
developerKey: 'xxxxxxxYYYYYYYY-12345678',
// The Client ID obtained from the Google API Console. Replace with your own Client ID.
clientId: '1234567890-abcdefghijklmnopqrstuvwxyz.apps.googleusercontent.com',
// Scope to use to access user's drive.
scope: 'https://www.googleapis.com/auth/drive.file'
}
},
methods: {
showDetails (data) {
if(data.picked === 'picked') {
console.log(data.docs)
}
}
}
}
</script>
All the information can be found on official Google Picker DOCS (https://developers.google.com/picker/docs/)
FAQs
Vue.js button to open the dialog of files from Google Drive using Google Picker API
We found that vue-google-picker 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.