deck.gl is a free, open source business intelligence & reporting project written in TypeScript and released under MIT. It has 14,597 GitHub stars, 2,267 forks and 532 open issues, and was last pushed 7 hours ago. On this registry it ranks #11 of 34 tracked projects in Business Intelligence & Reporting, with 5 head-to-head comparisons available. It gained 4 stars over the last 3 tracked days.

What is deck.gl?

deck.gl is an MIT-licensed, WebGL2 and WebGPU powered visualization framework that renders large-scale geospatial and data-driven layers in the browser, built for JavaScript, TypeScript and Python developers who need high-performance maps and custom visualizations without writing their own GPU rendering code.

What it is

deck.gl is an open-source visualization framework written in TypeScript and maintained as part of vis.gl, an OpenJS Foundation project. It maps data, usually an array of JSON objects, into a stack of visual layers such as icons, polygons and texts, and then renders that stack through one or more views, including map, first-person and orthographic projections. The project has 14,596 stars and 2,267 forks on GitHub, carries the MIT license, and its repository saw its most recent push on 2026-09-17.

The concrete problem it solves is the cost of writing and maintaining custom WebGL2 or WebGPU rendering code for large data sets. Instead of hand-building shader pipelines, buffer management and interaction logic, developers compose proven layers and use flexible APIs to control each aspect of rendering, extending core classes only when a custom case requires it. Out of the box it handles performant rendering and updating of large data sets, interactive event handling such as picking, highlighting and filtering, cartographic projections with integration into major basemap providers, and a catalog of well-tested layers.

Key capabilities

  • Composes data into a stack of layers, including icons, polygons and texts, viewed through map, first-person or orthographic views.
  • Performs rendering and updating of large data sets at interactive speed, which is the framework's stated core purpose.
  • Handles interactive event handling out of the box, covering picking, highlighting and filtering.
  • Provides cartographic projections and integration with major basemap providers for geospatial work.
  • Ships a catalog of proven, well-tested layers plus flexible layer APIs and easily extendable core classes.
  • Distributes as a script tag, an npm module for Pure JS and React, and a Python package installed with pip install pydeck.
  • Targets both WebGL2 and WebGPU rendering backends.

Who uses it and how

  • Front-end and TypeScript teams building interactive map dashboards, composing existing layers in React or pure JavaScript rather than writing raw WebGL.
  • Python data analysts and scientists rendering large geospatial data in notebooks through pydeck and its layer API.
  • Geospatial analysts who need cartographic projections and basemap provider integration inside a web application.
  • Teams with custom rendering needs that extend the core layer classes programmatically, as the architecture is designed for extension.
  • Developers working through adjacent ecosystems, including vega-deck.gl for Vega, earthengine-layers for Google Earth Engine, mapdeck for R and deck.gl-native for C++.

Getting started

Start through any of the three published flavors: include the script tag for the scripting API, run npm install deck.gl for the Pure JS or React bindings, or run pip install pydeck for the Python interface. Getting-started guides and full examples are linked from the project website at deck.gl.

How it compares

The facts provided do not list paid products that deck.gl replaces, and they name no direct competitors, only integrations and extensions built on top of it. On the evidence given, it stands alone in this registry within its category.

When to use it — and when not to

deck.gl is a rendering library rather than a hosted service, so adopting it means operating your own web application and assets; there is no database or mail server to run, but there is also no managed backend. It is a poor fit for anyone who wants a no-code dashboard builder or a turnkey hosted map product, and it assumes a WebGL2 or WebGPU capable browser plus JavaScript, TypeScript or Python development skills. The provided README excerpt is oriented toward getting started and links rather than operational detail, and the repository carries 532 open issues, so adopters should expect to consult the full documentation and issue tracker before committing.

project readme (upstream, from github) — read inline

version build downloads Coverage Status

deck.gl | Website

GPU-powered, highly performant large-scale data visualization

docs

deck.gl is designed to simplify high-performance, WebGL2/WebGPU based visualization of large data sets. Users can quickly get impressive visual results with minimal effort by composing existing layers, or leverage deck.gl's extensible architecture to address custom needs.

deck.gl maps data (usually an array of JSON objects) into a stack of visual layers - e.g. icons, polygons, texts; and look at them with views: e.g. map, first-person, orthographic.

deck.gl handles a number of challenges out of the box:

  • Performant rendering and updating of large data sets
  • Interactive event handling such as picking, highlighting and filtering
  • Cartographic projections and integration with major basemap providers
  • A catalog of proven, well-tested layers

Deck.gl is designed to be highly customizable. All layers come with flexible APIs to allow programmatic control of each aspect of the rendering. All core classes such are easily extendable by the users to address custom use cases.

Flavors

Script Tag

<script src="https://unpkg.com/deck.gl@latest/dist.min.js"></script>

NPM Module

npm install deck.gl
Pure JS
React

Python

pip install pydeck

Third-Party Goodies

Learning Resources

Contributing

deck.gl is part of vis.gl, an OpenJS Foundation project. Read the contribution guidelines if you are interested in contributing.

Attributions

Data sources

Data sources are listed in each example.

The deck.gl project is supported by

BrowserStack

Frequently asked questions

Is deck.gl free to use?

deck.gl is open source under the MIT licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does deck.gl do?

WebGL2 powered visualization framework

What is deck.gl written in?

deck.gl is primarily written in TypeScript. Its source is publicly available at https://github.com/visgl/deck.gl, and it has 14,597 GitHub stars.