Fabricare POS Wrapper in NodeJS, fully promisified
var FABRI = require('node-fabricare');
var options = {
User: "your_user",
Password: "your_password",
Prefix: "your_prefix",
Port: "your_port",
IP: "your_ip"
}
var pos = new FABRI(options);
Call fabricare for full documentation, but here are a few basics:
pos.Customer.CreateCustomer({ email: "[email protected]", firstName: "a", lastName: "b" });
pos.Customer.GetCustomer("id");
pos.Customer.GetCustomers({ firstName: "c" });
pos.Customer.UpdateCustomer("id", { firstName: "d" });
pos.Order.Exists(order_id);
pos.Order.FindById(order_id);
pos.Order.Create(order_object);
pos.Order.Update(order_id, order_object);
pos.Order.Sold(order_id);
pos.Order.Status(order_id);
pos.Invoice.Exists(order_id);
pos.Invoice.FindById(order_id);
npm test
will run a linter and the tests in test.js
The tests will not pass unless you edit the configuration there and set it to your Fabricare Instance.
Feel free to use those tests as reference for your implementation.