LogoLogo
  • Welcome
  • What's new?
  • Docs
    • User guides
      • Get Started
      • Kepler.gl workflow
        • Add data to layers
          • Adding Data Layers
          • Create a Layer
          • Blend and Rearrange Layers
          • Hide, Edit and Delete Layers
        • Add Data to the Map
      • Layers
        • Point
        • S2 Layer
        • Icon
        • Line
        • Cluster
        • Polygon
        • Hexbin
        • Grid
        • H3
        • Heatmap
        • Arc
        • Trip layer
      • Layer Attributes
      • Color Palettes
      • Filters
      • Map Styles
      • Interactions
      • Map Settings
      • Time Playback
      • Save and Export
      • FAQ
    • API Reference
      • ecosystem
      • Get Started
      • Advanced usages
        • Saving and Loading Maps with Schema Manager
        • Replace UI Component with Component Dependency Injection
        • Forward Dispatch Actions
        • Reducer Plugin
        • Using Updaters
        • Custom reducer initial state
        • custom-mapbox-host
      • Components
      • Reducers
        • reducers
        • map-style
        • map-state
        • combine
        • overview
        • ui-state
        • vis-state
      • Processors
        • All processors
      • Schemas
      • Actions
        • All actions
      • Cloud providers
        • Provider
      • Custom theme
      • Localization
    • Jupyter Notebook
  • Examples
    • Node/Express
    • Demo App
    • Open modal
    • Open modal
    • UMD client
    • Customize kepler.gl Theme
    • Customize kepler.gl Reducer
  • Contributing
    • Developing Kepler.gl
    • Contributor Covenant Code of Conduct
  • Change Log
  • Upgrade Guide
Powered by GitBook
On this page
  • Table of contents
  • Development Setup
  • Installing Dependencies
  • Running Tests
  • Test React components
  • Migrating enzyme to React testing library
  • Coding Rules
  • Git Commit Guidelines
  • Commit Message Format
  • Revert
  • Type
  • Subject
  • Body
  • Writing Documentation (THIS PART IS NOT AVAILABLE YET)
  • Building and viewing the docs locally
  • Writing jsdoc
  • Develop The kepler.gl Website
  • Publish the website
  • Publish kepler.gl package to NPM
  • Push a new release
  • Gitbook documentation
  • Documentation structure
  • Update Documentation

Was this helpful?

  1. Contributing

Developing Kepler.gl

PreviousContributingNextContributor Covenant Code of Conduct

Last updated 4 months ago

Was this helpful?

Table of contents

Development Setup

This document describes how to set up your development environment to build and test Kepler.gl, and explains the basic mechanics of using git, node, yarn.

Installing Dependencies

Before you can build Kepler.gl, you must install and configure the following dependencies on your machine:

  • : The is a good source of information.

  • : We use Node to generate the documentation, run a development web server, run tests, and generate distributable files. Depending on your system, you can install Node either from source or as a pre-packaged bundle.

    We recommend using (or ) to manage and install Node.js, which makes it easy to change the version of Node.js per project.

  • : We use Yarn to install our Node.js module dependencies (rather than using npm). See the detailed .

  • : We use Volta to manage Node and Yarn versions without you manually switching them

Fork Kepler.gl Repo

Developing kepler.gl

If you are using MacOS or Linux then you can follow along.

To develop features, debug code, run tests, we use webpack to start a local web server and serve the kepler.gl demo app from the src directory.

# Clone your kepler.gl fork repository:
git clone git@github.com:<github username>/kepler.gl.git

# Go to the kepler.gl directory:
cd kepler.gl

# Add the main kepler.gl repository as an upstream remote to your repository:
git remote add upstream "git@github.com:keplergl/kepler.gl.git"
# install Volta on Unix
curl https://get.volta.sh | bash

On Windows

winget install Volta.Volta
# Install the proper Node.js version for the Kepler.gl project
nvm install

# Use the downloaded Node.js version for the Kepler.gl project
nvm use

# Enable Yarn
corepack enable

Install dependencies with Yarn

# Install Puppeteer
yarn dlx puppeteer


# Install JavaScript dependencies:
yarn install
yarn bootstrap

# Setup Mapbox access token locally
export MapboxAccessToken=<MapboxAccessToken>
# Set up other environment variables
export DropboxClientId=<DropboxClientId>
export MapboxExportToken=<MapboxExportToken>
export CartoClientId=<CartoClientId>
export FoursquareClientId=<FoursquareClientId>
export FoursquareDomain=<FoursquareDomain>
export FoursquareAPIURL=<FoursquareAPIURL>
export FoursquareUserMapsURL=<FoursquareUserMapsURL>

# Start the kepler.gl demo app
yarn start

An demo app will be served at http://localhost:8080/

Develop with deck.gl

When develop, upgrade, debug deck.gl, Demo app can load deck.gl directly from src

// load deck.gl from node_modules/deck.gl/src, sub-modules from node_modules/@deck.gl/<module>/src
npm run start:deck

// load deck.gl src from the deck.gl folder parallel to kepler.gl
npm run start:deck-src

Running Tests

yarn test
  • Yarn test runs lint and 3 tests in different env. To run them separately

# lint
yarn lint

# node tests
yarn test-node

# jsdom tests
yarn test-browser

# headless browser tests, uses probe.gl to run browser tests with puppeteer
yarn test-headless
  • Here are some handy scripts / tricks for debugging tests

  1. add .only to errored tests to only run 1 test at a time

test.only('MapContainerFactory', t => {
  // tests
}
  1. run all tests in chromium browser. This runs node, browser and headless browser tests in chromium browser and logs the output, you can step through the code with chrome developer tools

yarn test-browser-drive
  1. Fast tests, runs node and browser tests without tap-spec output

yarn test-fast

To generate a coverage report

yarn cover

Test React components

We have introduced an eslint rule to deprecate the usage of enzyme so if you attempt to create new tests using enzyme it will throw an error when running lint.

Migrating enzyme to React testing library

Coding Rules

To ensure consistency throughout the source code, keep these rules in mind as you are working:

  • All features or bug fixes must be tested by one or more [specs][unit-testing].

This project use Eslint together Prettier. The linter should automatically inform you if you break any rules (like incorrect indenting, line breaking or if you forget a semicolon). Before doing a pull request, make sure to run the linter.

# To run the linter
yarn lint

Git Commit Guidelines

To commit your changes, please follow our rules over how our git commit messages can be formatted. This leads to more readable and unified messages that are easy to follow. But also, we use the git commit messages to generate the kepler.gl change log.

Commit Message Format

Each commit message consists of a header and a body. The header has a special format that includes a type and a subject. The PR # will be auto-generated once the PR is merged.

[<type>]<subject>(<pr>)
<BLANK LINE>
<body>

#e.g.
[Enhancement] Upgrade type-analyzer to pass 0/1 as integer (#317)

* Upgrade to type-analyzer@0.2.1
* Add test

The header is mandatory and the scope of the header is optional.

Any line of the commit message cannot be longer 100 characters! This allows the message to be easier to read on GitHub as well as in various git tools.

Revert

Type

Must be one of the following, capitalized.

  • [Feat]: A new feature

  • [Enhancement]: An update of a existing feature

  • [Bug]: A bug fix

  • [Docs]: Documentation only changes

  • [Style]: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, typos, etc)

  • [Refactor]: A code change that neither fixes a bug nor adds a feature

  • [Perf]: A code change that improves performance

  • [Test]: Adding missing or correcting existing tests

  • [Chore]: Changes to the build process or auxiliary tools and libraries such as documentation generation

Subject

The subject contains succinct description of the change:

  • use the imperative, present tense: "change" not "changed" nor "changes"

  • don't capitalize first letter

  • no dot (.) at the end

Body

Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes". The body should include the motivation for the change and contrast this with previous behavior.

Breaking Changes should start with the word BREAKING CHANGE: with a space or two newlines. The rest of the commit message is then used for this.

Writing Documentation (THIS PART IS NOT AVAILABLE YET)

This means that all the docs are stored inline in the source code and so are kept in sync as it changes.

There is also extra content (the developer guide, error pages, the tutorial, and misceallenous pages) that live inside the Kepler.gl repository as markdown files.

This means that since we generate the documentation from the source code, we can easily provide version-specific documentation by simply checking out a version of Kepler.gl and running the build.

Building and viewing the docs locally

yarn docs

Writing jsdoc

  • @param {type} name description - describes a parameter of a function

  • @returns {type} description - describes what a function returns

  • @property - describes a property of an object

  • @description - used to provide a description of a component in markdown

  • @example - specifies an example.

  • @public - Only methods with @public tag will be included in the docs

The type in @param and @returns must be wrapped in {} curly braces, e.g. {Object|Array}. Parameters can be made optional by either appending a = to the type, e.g. {Object=}, or by putting the [name] in square brackets. Default values are only possible with the second syntax by appending =<value> to the parameter name, e.g. @param {boolean} [ownPropsOnly=false].

Develop The kepler.gl Website

Make sure to export mapbox token in the same terminal before start the server.

$ export MapboxAccessToken=<insert_your_token>

In order to start

$ yarn web

To checkout the build

$ cd website && yarn build

Publish the website

Netlify is connected to the following github triggers:

  • Create a new PR

  • Updated an existing PR

  • Merge PR onto master

A new production version of kepler.gl website is automatically created and deployed every time a PR is merged onto master.

In order to support testing environment, Netlify is setup to generate build every time a PR is created or updated. By generating builds for new and updated PRs we support CI/CD so developers can test their own build in a production like environment

Publish kepler.gl package to NPM

Requirements

To prepare a new release you need the following tool:

Push a new release

In order to publish a new version of kepler.gl a developer must perform the following steps:

  1. Update package.json file with the new version value. Run npm version major | minor | patch to update version accordingly.

  2. Update CHANGELOG.md with the latest commit changes. Print commits with git log --pretty=oneline --abbrev-commit

  3. Create a new PR for review.

  4. Once the PR is reviewed and merged, pull the latest changes locally.

  5. Run gh-release: this command will create a new Github Release with the new updated CHANGELOG.md section.

  6. Once the new Github Release is created, Github will automatically trigger a new Github Action flow that will automatically build and publish the new package version to NPM registry.

After Release is completed and pushed

  • Update each of the example folder package.json kepler.gl dependency with the newer. To update all examples, run

npm run example-version

This step is required after the new version is published otherwise it would fail.

Gitbook documentation

Documentation structure

The documentation layout is defined by SUMMARY.md file where the table of contents define each entry has the following structure

- [ENTRY_LABEL](FILE_PATH)
  e.g.
- [Welcome](README.md)

The above file is used by Gitbook to generate the doc navigation visible on the left-hand side of Kepler.gl doc website. Gitbook also has the ability to show description for each folder/section of the documentation by creating an entry in SUMMARY.md and create a new README.md file within said folder. The README.md file is a Gitbook convention that treats README files as if they were the main entry file for each folder.

The following is an example of doc section in SUMMARY.md file:

- [User guides](docs/user-guides/README.md)

Update Documentation

The integration with Gitbook allows to update the documentation in two different ways:

  • Update doc files in the Kepler.gl repo. Follow the PR flow like any other changes

  • Update documentation directly on Gitbook.

For both scenarios, changes will be propagated from one system to the other and vice versa. When updating Gitbook, a new git commit will be push to the Kepler.gl master branch.

If you plan to contribute code to kepler.gl, you must have a so you can push code and open Pull Requests in the . You must the to .

If you are using Windows then using WSL (Windows Subsystem for Linux) is recommended. You can download a Linux Distribution like e.g. Ubuntu and inside of that distribution you can follow along with the next steps. You can find the detailed instructions about WSL .

Also please make sure the code editor you are using it has proper support for .VSCode has the Plugin. Please install necessary support for EditorConfig for your editor so that other code formatters do not have an effect on the Kepler.GL code.

Install On Unix, MacOS

Install nvm to set the proper Node.js version for the project. Follow instructions to install nvm .

This is the demo app we hosted on . By default, it serves non-minified source code inside the src directory.

We write node and browser tests with , , and , and lint with . Make sure to run test before submitting your PR. To run all of the tests once

Enzyme is no longer supported therefore we are now transitioning to .

In order to create new tests cases please take advantage of . All necessary dependencies are already installed, you can start testing your React components by following this ;

If you are interested in migrating enzyme tests to RTL (react testing library) feel free to check the

All public API methods must be documented with using jsdoc. To see how we document our APIs, please check out the existing source code and see the section about

If the commit reverts a previous commit, it should begin with revert: , followed by the header of the reverted commit. In the body it should say: This reverts commit <hash>., where the hash is the SHA of the commit being reverted. A commit with this format is automatically created by the command.

The Kepler.gl project uses

We build Api docs from scratch using . It generates docs from jsdoc:

You can find JSDoc instructions . Documentation.js is interested in the following block tags:

is used to support kepler.gl demo website.

: this tool facilitates the creation of a new git tag (using package.json version number) and a github release (different from npm release)

Setup gh-release with your github api token ()

Kepler.gl documentation is hosted on . For more information

GitHub account
GitHub Repository
fork
main kepler.gl repository
create a Pull Request
here
EditorConfig
EditorConfig for VS Code
volta
here
http://kepler.gl/#/demo
Tape
Enzyme
jsDom
@probe.gl/test-util
ESLint
testing library
Testing Library
doc
official migration guidelines
git revert
jsdoc
documentation.js
here
Netlify
gh-release
instructions
gitbook
read here
writing documentation
Git
Github Guide to Installing Git
Node.js ^18.x
nvm
nvm-windows
Yarn 4.4.0
installation instructions
Volta
Development Setup
Running Tests
Coding Rules
Commit Message Guidelines
Writing Documentation
Developing kepler.gl Website
Publish the website
Publish a new version