
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@local-logic/lat-client
Advanced tools
The `@local-logic/lat-client` package allows you to download or preview Local Logic Logic Location Assessment Tool (LAT).
The @local-logic/lat-client package allows you to download or preview Local Logic Logic Location Assessment Tool (LAT).
First, install with yarn, pnpm, or npm:
yarn add @local-logic/lat-client
pnpm add @local-logic/lat-client
npm i --save @local-logic/lat-client
You can now import LatClient:
import LatClient from "@local-logic/lat-client";
const latClient = LatClient(
"<API_KEY>", {
lat: 45.528130, // Your address latitude
lng: -73.598100, // Your address longitude
addressLabel: "5605 Av. de Gaspé #304, Montreal, Quebec H2T 2A4",
});
You can use the .open() method.
ℹ️ You should only call this method within an 'click' event handler. Otherwise, this event may be treated as popup events by the browser.
const button = document.createElement("button");
button.innerText = "Open Preview";
button.onclick = () => latClient.open();
document.body.appendChild(button);
#### React Example
import { useState } from "react"; import LatClient from "@local-logic/lat-client";
const latClient = LatClient( "<API_KEY>", { lat: 45.52813, // Your address latitude lng: -73.5981, // Your address longitude addressLabel: "5605 Av. de Gaspé #304, Montreal, Quebec H2T 2A4" } );
export default function App() { const [downloading, setDownloading] = useState(false);
return ( <button onClick={async () => { setDownloading(true); latClient.open(); setDownloading(false); }} disabled={downloading} > {downloading ? "Downloading..." : "Download"} ); }
FAQs
The `@local-logic/lat-client` package allows you to download or preview Local Logic Logic Location Assessment Tool (LAT).
We found that @local-logic/lat-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.