notime-nodejs
notime.eu API integration wrapper in Node.js
##installation
Please run the following command:
npm install notime-nodejs
How-To
Please use the following example to get started. You can also look at test inside tests/lib
too.
const NoTime = require('notime-nodejs');
const noTime = new NoTime({
primaryKey: '<primary>',
secondaryKey: '<seconday>',
groupGuid: '<group_guid>'
});
const shipment = {
......
}
noTime
.shipmentCreate(shipment)
.then(response => {
console.log(response);
})
license
The project is under MIT, but written solely for NoTime
api integration.