
Product
Rubygems Ecosystem Support Now Generally Available
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
@lob/vue-address-autocomplete
Advanced tools
[](https://badge.fury.io/js/@lob%2Fvue-address-autocomplete)
This is a very lightweight component that uses the Lob Autocomplete API in order to simplify the process of adding in a search autocomplete bar. Check out the Autocomplete API for more configuration options on Postman or Lob Documentation.
As always if this front end component doesn't suit your bootstrapped needs, feel free to check out the aformentioned links above to have more control over the look and feel of your address autocomplete and verification needs :)
npm install --save @lob/vue-address-autocomplete
Make sure to include our component styles in your js entry point or at the component level:
# inside main.js or component file
import '@lob/vue-address-autocomplete/dist/styles.css';
<template>
<div>
<AddressAutocomplete apiKey="YOUR_API_KEY_HERE" :addresses="addresses" @selectItem="selectItem" @newSuggestions="addNewSuggestions" />
<div class="column column-40">
<pre><code>{{selection}}</code></pre>
</div>
</div>
</template>
<script>
import AddressAutocomplete from '@lob/vue-address-autocomplete'
export default {
components: {
AddressAutocomplete
},
data() {
return {
addresses: [],
selection: ''
}
},
methods: {
selectItem(item) {
this.selection = item;
},
addNewSuggestions(suggestedAddresses) {
this.addresses = suggestedAddresses;
}
}
};
</script>
Run
npm run build
npm publish
FAQs
[](https://badge.fury.io/js/@lob%2Fvue-address-autocomplete)
The npm package @lob/vue-address-autocomplete receives a total of 320 weekly downloads. As such, @lob/vue-address-autocomplete popularity was classified as not popular.
We found that @lob/vue-address-autocomplete 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's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.