Package Exports
- @workos-inc/node
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@workos-inc/node) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
WorkOS Node.js Library
The WorkOS library for Node.js provides convenient access to the WorkOS API from applications written in server-side JavaScript.
Documentation
See the API Reference for Node.js usage examples.
Installation
Install the package with:
yarn add @workos-inc/nodeConfiguration
To use the library you must provide an API key, located in the WorkOS dashboard, as an environment variable WORKOS_API_KEY:
WORKOS_API_KEY="sk_1234"Or, you can set it on your own before your application starts:
import WorkOS from '@workos-inc/node';
const workos = new WorkOS('sk_1234');