npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@huggg/maps-browser

v0.3.5

Published

A few handy tools for fetching huggg locations and displaying them on a map.

Downloads

4

Readme

huggg maps for the browser

pipeline status coverage report

Purpose

A few handy tools for fetching huggg locations and displaying them on a map.

Usage

The recommended way to use this map is to pass in a google maps object and an empty DOM element to the static init function. This will return an instantiated class. There are some edge-casse bugs which can happen if we do not wait for the tilesloaded event and this init function handles this for you.

  const el = window.document.getElementById('map');
  const hugggMap = HugggMap.init(google.maps, el);
  hugggMap.addMarkers(locations);

In a more complex app, you may have an existing map you wish to augment, in which case simply call new HugggMap(google.maps, map) with your pre-prepared map instance.

API

init(Gmaps, el)

Initialises Google maps with our receommended settings and creates a new class instance on a fresh map once the tiles are loaded.

Required paramaters are: Gmaps Google maps object el The target DOM element to insert the map into.

addMarkers(locations, [clickHandler])

This method will add markers to the map from a supplied array of locations. For example, to create a new map showing all huggg locations you would implement something like:

import HugggMap from 'huggg-browser-maps';
import { brands } from 'huggg-maps-browser';

const el = window.document.getElementById('map');

Promise.all([HugggMap.init(google.maps, el), brands.getLocations()])
  .then(([hugggMap, locations]) => hugggMap.addMarkers(locations))
  .catch(err => console.error(err));

In the default case, this will cause the markers to have the "standard" click behaviour of highlighting, centering and displaying a popup. If you wish to do something custom you can override like this:

const customHandler = (gmapsEvent, markerClicked, defaultHandler) => {
  if (markerMeetsArbitraryCondition(markerClicked)) {
    doCustomAction();
  } else {
    defaultHandler();
  }
};

maps.addMarkers(markers, customHandler);

You can also choose from the range of default handler behaviours, like so:

const onlyShowPopups = (_ev, _marker, defaultHandler) => {
  defaultHandler({ highlight: false, center: false, popup: true });
};

maps.addMarkers(markers, onlyShowPopups);

Allowing for more complex behaviours:

const onlyShowPopups = (_ev, marker, defaultHandler) => {
  if (markerHasProducts(marker)) {
    defaultHandler({ highlight: true, center: true, popup: false });
  } else if (markerActive(marker)) {
    defaultHandler(); // empty args is all behaviours
  } else {
    // do nothing
  }
};

maps.addMarkers(markers, onlyShowPopups);

clearMarkers()

Clears all markers from the current map