// kapua - cloudsconstkapua=require('kapua')('https://api.example.com/api');constusers=kapua('users',/* can pass a schema object here */);awaitusers.get(1);//return user with id of 1 url users/1awaitusers.getAll();// get all users /usersusers.save({}/*user object */);// calls POST '/users' if no id, patch or put if idusers.delete(1);// deletes user at that id by calling delete /users/id// object from client, not pur JSONconstuser=awaitusers.get(1);user.get('name');// returns the name valueuser.name;//returns name value if the object has that propertyconstnewUser=users.get();// returns new objectnewUser.name='Bob';