Migrating to BUILDNANA
BUILDNANA is a fork of the previous game library, with the goal of continuing the development of the library.
This guide explains how to transition from the previous library to BUILDNANA.
Updating the package
As BUILDNANA is compatible, you can update the package in your project to
buildnana and everything should work as before.
npm install buildnana@3001
// before:
import kaboom from "kaboom";
// after:
import kaboom from "buildnana";
CDN
// before:
import kaboom from "https://unpkg.com/kaboom@3000.1.17/dist/kaboom.mjs";
// after:
import kaboom from "https://unpkg.com/buildnana@3000.1.17/dist/kaboom.mjs";
Trying out new features
To try out new features, you have to install the @next version of BUILDNANA.
Check the Installation Guide for more information about installing BUILDNANA.
Check the Changelog for the new features and changes.