You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ These instructions will get you a copy of the project up and running 🏃 on you
46
46
47
47
constresult=await session
48
48
.execute("SELECT * FROM scylla_tables limit ?", [1])
49
-
.catch((err) =>console.error(err));
49
+
.catch(console.error);
50
50
51
51
console.log(result);
52
52
```
@@ -61,6 +61,10 @@ To install this package, use the following command:
61
61
npm install @lambda-group/scylladb
62
62
```
63
63
64
+
## 📚 Examples 📚
65
+
66
+
Reference wise you can guide yourself through the [examples/](https://github.com/Daniel-Boll/scylla-javascript-driver/tree/main/examples) folder in the repo.
67
+
64
68
## 🙏 Acknowledgments 🙏
65
69
66
70
- Thanks to the developers of ScyllaDB for creating such a high-performance database.
0 commit comments