This open source repo helps you visualize live location and activity data of your users on a web app. The data is generated using the HyperTrack SDKs. See sample of these web visuals here.
Set up SDK in your user's app by signing up here, and then integrating the SDK into your app
Clone this repository
# Clone this repository
$ git clone https://github.com/hypertrack/js-sdk.git
For detailed documentation of the APIs, customizations and what all you can build using HyperTrack, please visit the official docs.
Join our Slack community for instant responses, or interact with our growing community. You can also email us at help@hypertrack.com.
Feel free to clone, use, and contribute back via pull requests. We'd love to see your pull requests - send them in! Please use the issues tracker to raise bug reports and feature requests. We are excited to see what live location feature you build in your app using this project. Do ping us at help@hypertrack.io once you build one, and we would love to feature your app on our blog!
This is a mono-repo (repo containing multiple packages) managed with lerna.
npm install
: Install lerna and other dependencieslerna bootstrap
: Install dependencies of all the packages and symlinks packages existing in this repo. As the packages in the repo are not yet build this will install all from npm. Run this after any dependency is added in any of the packageslerna run lib
: Builds all the packageslerna link
: Symlinks all internal packagesBecause the dependencies of the packages are managed by lerna, instead of using npm install package-x
use lerna add package-x --scope=internal-package-name
, where internal-package-name
is the internal package name. Use --dev
flag to install as dev-dependencies. Remove --scope=internal-package-name
to install on all the packages
Generated using TypeDoc