Coder Social home page Coder Social logo

kaboom's Introduction

logo

kaboom.js is a JavaScript library that helps you make games fast and fun!

website

Example

<script src="https://kaboomjs.com/lib/0.2.0/kaboom.js"></script>
<script type="module">

// make kaboom functions global
kaboom.global();

// init kaboom context
init();

// define a scene
scene("main", () => {

	// add a text at position (100, 100)
	add([
		text("ohhimark", 32),
		pos(100, 100),
	]);

});

// start the game
start("main");

</script>

paste this directly into an html file and start playing around!

Usage

the recommended way is to download a local copy of the library and use it directly, the source should be easy to read and modify (still in progress of documenting the source)

you can also use CDN

<script src="https://kaboomjs.com/lib/@version/kaboom.js"></script>

all available version tags can be found in CHANGELOG.md, or github releases

special version tags:

  • dev: current master with the newest unreleased features / fixes, but not guaranteed to be stable
  • latest: latest release

the script will expose a window.kaboom containing all the kaboom functions, you can either do

kaboom.global();

init();
scene(...);
start(...);

to import all kaboom functions to global namespace, or use namespaced kaboom functions to avoid any naming collision

const k = kaboom;

k.init();
k.scene(...);
k.start(...);

Dev

use examples to test / add features

  1. npm run site
  2. go to http://localhost:8000/examples
  3. edit examples in site/pub/examples/

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.