@elbwalker/destination-web-api
v2.4.3
Published
API web destination for walkerOS
Downloads
250
Maintainers
Readme
API web destination for walkerOS
Made to be used with walker.js from walkerOS.
More detailed information and examples can be found in the documentation.
🤓 Usage
Start by setting up the config for the destination. Optional fields as comments. Destinations can be used via node or directly in the browser.
Configuration
Learn more about the destinations in general and read the detailled API configuration.
const config = {
custom: {
url: 'https://httpbin.org/anything',
transform: (event, config, mapping) => {
return JSON.stringify(event);
},
transport: 'fetch',
},
};
Node usage
npm i --save @elbwalker/destination-web-api
import { elb } from '@elbwalker/walker.js';
import destinationAPI from '@elbwalker/destination-web-api';
elb('walker destination', destinationAPI, config);
Contribute
Feel free to contribute by submitting an issue, starting a discussion or getting in contact.