Welcome to the Leap Motion JavaScript framework.
Leap.loop(function(frame){
console.log(frame.hands.length);
});
Learn more in the Getting Started Guide, and the API Reference.
Browser: Download the latest leap.js
from our CDN.
Bower: bower install leapjs
Node: npm install leapjs
Live Examples can be found at developer.leapmotion.com/leapjs/examples.
Some examples have been included in the examples/
directory. To run them do the following:
- Run
npm install
- Run
make serve
- Point your browser to localhost:8080/examples
Or in code:
- Run
node examples/node.js
Plugins are used to modularly extend Leap Webapps with external libraries.
Leap.loop(function(frame){
if (frame.hands.length < 1) return;
console.log(frame.hands[0].screenPosition());
}).use('screenPosition');
Version 0.3.0 or greater of leapjs requires version 1.0.9 or greater of the tracking software which is available at https://www.leapmotion.com/setup in order to have background support work properly. Mixing and matching prior versions will result in inconsistent background/focus support.
You may encounter a problem with an error message including SELF_SIGNED_CERT_IN_CHAIN
.
This is often a result of changes in OSX's security system; try reinstalling Node.js.
If that does not work, turn off SSL checking with the following instructions:
npm config set strict-ssl=false
npm install leapjs -v0.4.1
Details about the protocol used to communicate with leapd
are detailed here
PROTOCOL.md.
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.