Skip to content

leapmotion/leapjs

Folders and files

NameName
Last commit message
Last commit date
Nov 3, 2020
Feb 24, 2025
May 7, 2014
Dec 10, 2019
Jun 7, 2021
Jul 7, 2013
Mar 16, 2021
Jun 7, 2021
Jun 28, 2013
May 7, 2014
Dec 10, 2019
Dec 11, 2019
Feb 19, 2017
Jun 7, 2021
May 7, 2014
Dec 9, 2020
Feb 24, 2025
Jun 7, 2021
Feb 24, 2025
Feb 24, 2025
Jun 7, 2021
Jun 7, 2021

Repository files navigation

LeapJS Logo

Welcome to the Leap Motion JavaScript framework.

You can now use LeapJS with Ultraleap Gemini V5 and Hyperion V6! Visit the Ultraleap Tracking WebSocket repository to grab the code and build it from source.

Build Status

Leap.loop(function(frame){
  console.log(frame.hands.length);
});

Learn more in the Getting Started Guide, and the API Reference.

Installation

Browser: Download the latest leap.js from our CDN.

Bower: bower install leapjs

Node: npm install leapjs

Examples

Visit developer.leapmotion.com/gallery/category/javascript for the latest examples.

Some more basic examples have also been included in the examples/ directory.

Plugins

Plugins are used to modularly extend Leap Webapps with external libraries. Here we use the screenPosition plugin to get the position of the hand as an on-screen cursor.

Leap.loop({

  hand: function(hand){
    console.log( hand.screenPosition() );
  }

}).use('screenPosition');

Misc

LeapJS includes the vector math library GL-Matrix for your use and convenience. For example, we can easily compute a dot product. See the example and the gl matrix docs for more info.

var dot = Leap.vec3.dot(hand.direction, hand.indexFinger.direction);

Also visit the wiki for how to make plugins, protocol guide, and other stuff.

Contributing

Add your name, email, and github account to the CONTRIBUTORS.txt list, thereby agreeing to the terms and conditions of the Contributor License Agreement.

Open a Pull Request. If your information is not in the CONTRIBUTORS file, your pull request will not be reviewed.

Analytics