Migrating from Kaboom.js to KAPLAY

KAPLAY is the fork of Kaboom.js, with the goal of continuing the development of the library.

This guide is in general, how to pass from Kaboom to KAPLAY.

Updating the package

As KAPLAY is a fork of Kaboom, you can update the package in your project to kaplay and everything should work as before.

npm install kaplay
// before:
import kaboom from "kaboom";

// after:
import kaboom from "kaplay";

CDN

// before:
import kaboom from "https://unpkg.com/kaboom@3000.1.17/dist/kaboom.mjs";

// after:
import kaboom from "https://unpkg.com/kaplay@3000.1.17/dist/kaboom.mjs";

Trying out new features

To try out new features, you have to install the @next version of KAPLAY.

Check the Installation Guide for more information about installing KAPLAY.

Check the Changelog for the new features and changes.

kaplay logo

3001.0.0-alpha.15