We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ae8644 commit 887130eCopy full SHA for 887130e
1 file changed
README.md
@@ -8,10 +8,10 @@ yarn add @boilingdata/node-boilingdata
8
```
9
10
```typescript
11
-import { BoilingData, isDataResponse } from "../boilingdata/boilingdata";
+import { BoilingData, isDataResponse } from "@boilingdata/node-boilingdata";
12
13
async function main() {
14
- const bdInstance = new BoilingData({ process.env["BD_USERNAME"], process.env["BD_PASSWORD"] });
+ const bdInstance = new BoilingData({ username: process.env["BD_USERNAME"], password: process.env["BD_PASSWORD"] });
15
await bdInstance.connect();
16
const rows = await new Promise<any[]>((resolve, reject) => {
17
let r: any[] = [];
0 commit comments