var sdk = require("ma3route-sdk");

sdk.utils.setup({
    key: "myapikey",
    secret: "SoM3sEcR3tf0rM3o1y",
});

sdk.trafficUpdates.get(function(err, updates) {
    if (err) {
        console.log("something went wrong: %s", err);
        return;
    }
    console.log("got some updates: %j", updates);
    return;
});

A development kit for programmers developing Node.js applications interacting with the Ma3Route REST API.

Fasten your application development using our official Node.js SDK.

  • Reliable.Ma3Route's web application uses this SDK. We eat our own dog food. Woof! Woof!
  • Up-to-date.The SDK is updated along with the Ma3Route API. As soon as a change is done in the API we update the SDK to support the changes.
  • Well-tested.We continuously test the SDK internals.
  • Support.If you encounter a bug, you can simply report in our issue tracker and we look into it. Also feature requests are welcome.