
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
# npm
npm install v3-gmaps
# yarn
yarn add v3-gmaps
# pnpm
pnpm add v3-gmaps
This plugin can be installed like any Vue plugin:
import { createApp } from 'vue';
import App from './App.vue';
import gmaps from 'v3-gmaps';
// Optional stylesheet needed for showing errors and the Popup component
import 'v3-gmaps/dist/style.css';
const app = createApp(App);
app.use(gmaps, { key: 'YOUR_GOOGLE_MAPS_API_KEY' });
app.mount('#app');
<template>
<!-- The map component requires a container with a defined height -->
<div style="height: 500px; width: 100%">
<gm-map>
<gm-marker :position="{ lat: -27, lng: 153 }" />
</gm-map>
</div>
</template>
<script setup>
import { gmMap, gmMarker } from 'v3-gmaps';
</script>
This project is licensed under the MIT License - see the LICENSE file for details
FAQs
Lightweight, typed, Google Maps components for Vue 3
The npm package v3-gmaps receives a total of 44 weekly downloads. As such, v3-gmaps popularity was classified as not popular.
We found that v3-gmaps demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.