
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@htmlbricks/hb-map
Advanced tools
Interactive map: `center`, `zoom`, `source` (OSM or CARTO vector styles), `options` (e.g. `centerFromGeometries`, marker text layout), and `data` with markers (lng/lat, icon, popup HTML, text). Set `screenshot` to capture; emits map clicks, marker clicks,
Interactive map: center, zoom, source (OSM or CARTO vector styles), options (e.g. centerFromGeometries, marker text layout), and data with markers (lng/lat, icon, popup HTML, text). Set screenshot to capture; emits map clicks, marker clicks, and screenshot payloads.
export type Component = {
id?: string;
style?: string;
zoom: number;
center: number[];
data: {
marker?: {
lngLat: number[];
icon?: {
uri: string;
scale?: number;
anchor?: number[];
opacity?: number;
color?: string;
};
id?: string;
popupHtml?: string;
text?: string;
text_position?: "top" | "right" | "bottom" | "left";
text_offset?: number;
};
point?: {
lngLat: number[];
icon?: {
uri: string;
scale?: number;
anchor?: number[];
opacity?: number;
color?: string;
};
id?: string;
popupHtml?: string;
};
line?: {
lngLat: number[];
icon?: {
uri: string;
scale?: number;
anchor?: number[];
opacity?: number;
color?: string;
};
id?: string;
popupHtml?: string;
}[];
}[];
source: { type: string; url?: string; style?: "positron" | "dark_matter" | "voyager" };
options: {
centerFromGeometries?: boolean;
text_position?: "top" | "right" | "bottom" | "left";
text_offset?: number;
text_scale?: number;
};
screenshot?: string;
};
export type Events = {
pointClickCoordinates: {
coordinates: { latitude: number; longitude: number };
zoom: number;
center: number[];
};
markerClick: {
coordinates: { latitude: number; longitude: number };
id: string;
};
screenshotTaken: {
base64: string;
};
};
FAQs
Interactive map: `center`, `zoom`, `source` (OSM or CARTO vector styles), `options` (e.g. `centerFromGeometries`, marker text layout), and `data` with markers (lng/lat, icon, popup HTML, text). Set `screenshot` to capture; emits map clicks, marker clicks,
The npm package @htmlbricks/hb-map receives a total of 1,636 weekly downloads. As such, @htmlbricks/hb-map popularity was classified as popular.
We found that @htmlbricks/hb-map 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.