Cogfy Node.js This package provides methods to access the Cogfy public API. Installation npm install cogfy Usage import { Cogfy } from 'cogfy' const cogfy = new Cogfy({ apiKey: process.env.COGFY_API_KEY }) async function main () { const collections = await cogfy.collections.list() } main()