@cogfy/tables
v0.2.1
Published
[](https://github.com/IndigoHive/cogfy-node/actions/workflows/tests.yml) [](https://www.npmjs.c
Keywords
Readme
Cogfy Node.js
This package provides methods to access the Cogfy public API.
Installation
npm install @cogfy/tablesUsage
import { Cogfy } from '@cogfy/tables'
const cogfy = new Cogfy({
apiKey: process.env.COGFY_API_KEY
})
async function main () {
const collections = await cogfy.collections.list()
}
main()