https://github.com/kanocomputing/node-grt
An implementation of the Gesture Recognition Toolkit (GRT) in node.js
https://github.com/kanocomputing/node-grt
Last synced: 8 months ago
JSON representation
An implementation of the Gesture Recognition Toolkit (GRT) in node.js
- Host: GitHub
- URL: https://github.com/kanocomputing/node-grt
- Owner: KanoComputing
- License: mit
- Created: 2018-02-01T16:30:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-18T15:32:54.000Z (over 7 years ago)
- Last Synced: 2025-07-07T12:04:29.155Z (11 months ago)
- Language: C++
- Size: 5.9 MB
- Stars: 4
- Watchers: 20
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-grt
🚨 Incomplete and unmaintained proof of concept. 🚨
An implementation of Nick Gillian's Gesture Recognition Toolkit ([GRT](https://github.com/nickgillian/grt)) in node.js
## Installation
This module is available on `npm`.
```
npm install --save node-grt
```
Prebuilt versions of the module are uploaded using the `prebuild` module. If your target platform doesn't have a prebuilt binary, npm will try to build the module.
## Building
To compile the extension for the first time, run
```
$ npm i
$ npm run configure
$ npm run build
```
All subsequent builds only need `npm run build`
### Windows
Building on Windows requires the statically compiled grt library. As this file is over 100M, it is not versioned on this repository. The `.lib` file can be found here: [grt.lib](http://releases.kano.me/node-grt/win32/lib/grt.lib).
Place the `grt.lib` file in the `lib` folder of this module or update the `bindings.gyp` `libraries` section to specify the library's location. Then run the command specified in the Building section.