WorkOS is not a constructor
koolfreak opened this issue · 2 comments
koolfreak commented
const WorkOS = require('@workos-inc/node');
const workos = new WorkOS("sk_test_a2");
TypeError: WorkOS is not a constructor
maxdeviant commented
When using CommonJS-style imports you need to import the SDK constructor like so:
const { WorkOS } = require('@workos-inc/node');
const workos = new WorkOS('sk_example_123456789');
koolfreak commented
ok thanks, it's working now