We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The import for use in a nodejs app looks like this:
const { JupiterOneClient } = require('@jupiterone/jupiterone-client-nodejs/dist/j1client');
it should be something more like this ideally:
const JupiterOneClient, { ...other stuff... } = require('@jupiterone/jupiterone-client-nodejs');
Here is an example of how to specify the exports in a package.json:
https://github.com/reaviz/reaviz/blob/master/package.json#L19-L24
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The import for use in a nodejs app looks like this:
it should be something more like this ideally:
Here is an example of how to specify the exports in a package.json:
https://github.com/reaviz/reaviz/blob/master/package.json#L19-L24
The text was updated successfully, but these errors were encountered: