New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

syncromatics-track-api

Package Overview
Dependencies
Maintainers
5
Versions
168
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

syncromatics-track-api

Library to interact with the Syncromatics Track API

latest
Source
npmnpm
Version
3.36.0
Version published
Weekly downloads
18
-25%
Maintainers
5
Weekly downloads
 
Created
Source

Syncromatics Track API JavaScript Client

This is the JavaScript client for accessing the Syncromatics Track API.

Build Status semantic-release

Installation

npm install syncromatics-track-api

Quick start guide

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 for details.

Documentation

Generated documentation is available on the project page. You can also find example usages in the src/examples directory.

Development

Versioning: npm version [0.0.xx-development] Publishing: npm publish --tag development

Contributing

Please see CONTRIBUTING for our guide to contributing and code of conduct.

Keywords

syncromatics

FAQs

Package last updated on 05 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts