UNPKG

ondc-campaign-sdk

Version:

[![npm version](https://img.shields.io/npm/v/ondc-campaign-sdk.svg)](https://www.npmjs.com/package/ondc-campaign-sdk) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![Made with ❤️](https://img.shields.io/badge/Made%20with-%

17 lines (12 loc) 440 B
const { fetchLiveCampaignProducts } = require("./api"); const { fetchLiveCampaignProductsWithHtml } = require("./render"); async function test() { const data = await fetchLiveCampaignProducts(); console.log("Campaign Products:", data); } async function testRender() { const html = await fetchLiveCampaignProductsWithHtml(); console.log(html); // You can also write it to a file or insert into DOM } // testRender(); test();