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
Creating a new instance of Abstract.Client fails on Windows machine regardless of settings of transportMode. E.g.:
const client = new Abstract.Client({ // Use the cli if available, otherwise use the api accessToken: data.sdkToken, transportMode: ["api"] });
Error: abstract-cli.exe could not be accessed at the expected path: ....\node_modules@elasticprojects\abstract-cli\bin\abstract-cli.exe
This happens due requiring abstract-cli in Endpoint.js:96 regardless of the settings
abstract-cli
var cliPath = require("@elasticprojects/abstract-cli");
When I comment out the line, the client is working.
The text was updated successfully, but these errors were encountered:
Is this path with the missing slash between node_modules@elasticprojects as the error was printed?
node_modules@elasticprojects
Sorry, something went wrong.
No branches or pull requests
Creating a new instance of Abstract.Client fails on Windows machine regardless of settings of transportMode.
E.g.:
Error: abstract-cli.exe could not be accessed at the expected path: ....\node_modules@elasticprojects\abstract-cli\bin\abstract-cli.exe
This happens due requiring
abstract-cli
in Endpoint.js:96 regardless of the settingsWhen I comment out the line, the client is working.
The text was updated successfully, but these errors were encountered: