Developing Kepler.gl
Last updated
Was this helpful?
Last updated
Was this helpful?
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
.
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
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.
On Windows
Install dependencies with Yarn
An demo app will be served at http://localhost:8080/
When develop, upgrade, debug deck.gl, Demo app can load deck.gl directly from src
Yarn test runs lint and 3 tests in different env. To run them separately
Here are some handy scripts / tricks for debugging tests
add .only
to errored tests to only run 1 test at a time
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
Fast tests, runs node and browser tests without tap-spec output
To generate a coverage report
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.
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 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.
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.
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.
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
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
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.
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.
@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]
.
Make sure to export mapbox token in the same terminal before start the server.
In order to start
To checkout the build
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
To prepare a new release you need the following tool:
In order to publish a new version of kepler.gl a developer must perform the following steps:
Update package.json file with the new version value. Run npm version major | minor | patch
to update version accordingly.
Update CHANGELOG.md with the latest commit changes. Print commits with git log --pretty=oneline --abbrev-commit
Create a new PR for review.
Once the PR is reviewed and merged, pull the latest changes locally.
Run gh-release
: this command will create a new Github Release with the new updated CHANGELOG.md section.
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
This step is required after the new version is published otherwise it would fail.
The documentation layout is defined by SUMMARY.md file where the table of contents define each entry has the following structure
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:
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