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 🙏

© 2024 – Pkg Stats / Ryan Hefner

open-static-maps

v1.0.0

Published

<h1 align="center">OPEN-STATIC-MAPS</h1> <h4 align="center">Currently on development</h4>

Downloads

3

Readme

The primary goal of this package is to seamlessly replace our internal library. It's based on the osm-static-maps package. Emphasizing speed and safety. This ensures a swift and efficient performance in alignment with our project requirements.

Render mode

The render works by using puppeteer to render the map and then save the image to the disk or returning it encoded using cbor. To be memory and cpu efficient only one instance of the browser is created and a tab is created for each render request.

sequenceDiagram
    participant Your code
    participant OSM
    
    OSM->>OSM: Start the browser
    loop Call the function when you need it
        Your code->>OSM: Call render function
        activate OSM
        OSM->>OSM: Save file
        OSM-->>Your code: Response
    end
    deactivate OSM

Work mode

There are two modes of operation.

[!IMPORTANT]
At the moment it is only designed to be used on the same server that needs the images, that is the reason why it saves the screenshots directly to the disk, then you can move them wherever you want.

Library mode: You use it on your code and call the render function.

/// ESM import
import { render } from 'open-static-maps';
/// CJS import
const { render } = require('open-static-maps');

render({
    width: 600,
    height: 400,
    provider: 'osm',
    output: 'buenos-aires.png',
});

Server mode: You start the server and make http requests to it.

/// ESM import
import { render } from 'open-static-maps';
/// CJS import
const { render } = require('open-static-maps');

render({
    width: 600,
    height: 400,
    provider: 'osm',
    output: 'buenos-aires.png',
});
sequenceDiagram
    participant HttpClient
    participant OSM
    
    OSM->>OSM: Start the browser
    loop Call the function when you need it
        HttpClient->>OSM: Http render request
        activate OSM
        OSM->>OSM: Save file
        OSM-->>HttpClient: Response
    end
    deactivate OSM

| Parameter | Type | Required | Description | Default | |-----------|---------|----------|-------------|---------| | width | number | :x: | Width of the image in pixels. | 110 | | height | number | :x: | Height of the image in pixels. | 61 | | outputFile| string | :heavy_check_mark: |Path to the output file. | undefined | | provider | OSM|CARTODB|CARTODB_LIGHT|CARTODB_DARK | :x: | Map provider. | CARTODB |

Feature requests

Feel free to open an issue if you have a feature request.

TODO

  • [ ] Support for png and webp formats
  • [ ] Serve images
  • [ ] Output to buffer
  • [ ] More providers
  • [ ] More map renderers
  • [ ] Geojson support
  • [ ] Limit the number of concurrent renders or use a queue