https://github.com/syncromatics/syncromatics-track-api
Library to interact with the Syncromatics Track API
https://github.com/syncromatics/syncromatics-track-api
javascript-client syncromatics syncromatics-track-api
Last synced: about 1 month ago
JSON representation
Library to interact with the Syncromatics Track API
- Host: GitHub
- URL: https://github.com/syncromatics/syncromatics-track-api
- Owner: syncromatics
- Created: 2017-02-13T23:41:54.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-05-22T16:13:12.000Z (10 months ago)
- Last Synced: 2025-10-25T13:51:17.110Z (5 months ago)
- Topics: javascript-client, syncromatics, syncromatics-track-api
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/syncromatics-track-api
- Size: 3.92 MB
- Stars: 6
- Watchers: 11
- Forks: 1
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# Syncromatics Track API JavaScript Client
This is the JavaScript client for accessing the [Syncromatics Track API][track-api-docs].

[](https://github.com/semantic-release/semantic-release)
## Installation
`npm install syncromatics-track-api`
## Quick start guide
```javascript
import Track from 'syncromatics-track-api';
const api = new Track();
api.logIn({ apiKey: 'my API key' });
api.customer('SYNC').vehicles()
.withQuery('012345')
.getPage()
.then(vehicles => /* work with vehicles */);
```
You can also log in with a username and password or a previously-generated JWT token. See the
[logIn documentation][login-docs] for details.
## Documentation
Generated documentation is available on the [project page][project-page]. You can also find example
usages in the [src/examples directory][src-examples].
## Development
Versioning: `npm version [0.0.xx-development]`
Publishing: `npm publish`
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for our guide to contributing and code of conduct.
[project-page]: http://syncromatics.github.io/syncromatics-track-api
[login-docs]: http://syncromatics.github.io/syncromatics-track-api#tracklogin
[track-api-docs]: http://docs.syncromaticstrackapi.apiary.io
[src-examples]: https://github.com/syncromatics/syncromatics-track-api/tree/master/src/examples