Kree Documentation
  • Welcome to Kree Java
  • Changelog
  • Getting Started
    • Installing Kree
    • Installing Kree using CLI
    • Get Help on Discord
  • Core Components
    • Game
    • Window
    • SceneManager
    • Input
    • Debug
    • Sprite
    • GameObject
    • Transform
    • Vector2
    • SpriteSheet
    • Animation
    • Audio
    • Random
  • GameObject components
    • Animator
    • BoxCollider
    • LookAtObject
    • Mesh Renderer
    • ParticleSystem
    • RigidBody
    • SpriteRenderer
    • PlayerMovement
    • Prefs
  • Kree User Interface
    • Text
    • TextInput
    • ProgressBar
    • Button
    • Panel
  • Code Snippets
    • Launcher
    • Creating Scene
    • Follow Mouse On Click
    • Animating GameObject
    • Implementing Particle System
    • Creating Custom Components
    • Playing Audio
  • Game Tutorials
  • Avoid the Enemy!
  • High score
Powered by GitBook
On this page
  • Node.js installation
  • CLI installation
  • What does that do?
  • How to use the CLI?

Was this helpful?

  1. Getting Started

Installing Kree using CLI

Installation made easy.

PreviousInstalling KreeNextGame

Last updated 4 years ago

Was this helpful?

Node.js installation

Go to and download it for you operating system.

CLI installation

Open a new terminal (Command Prompt for Windows) and type in

npm i create-kree-game -g

What does that do?

  • npm => the package manager of Node.js ( Node Package Manager)

  • i => install

  • create-kree-game => the name of the CLI (Command Line Interface)

  • -g => install the package global

  1. Install your favorite IDE / Text Editor

  2. Download the *.jar file of Kree in you downloads folder.

And your done with the setup!

We recommend using IntelliJ IDEA as an IDE

How to use the CLI?

  1. Open a new terminal window.

  2. Go to an empty folder (the name of the folder will be the name of the project)

    To navigate between folders, you can use cd, mkdir, cd .. and pwd.

  3. Run create-kree-game on the current directory. (answer the prompts by your needs)

That's it! Now open the folder with your IDE and start coding!

Node.js website
Download Kree