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 6c004be commit 5b02022Copy full SHA for 5b02022
packages/neo4j-driver-deno/README.md
@@ -48,8 +48,11 @@ await session.close();
48
await driver.close();
49
```
50
51
-You can use `deno run --allow-net ...` or `deno repl` to run this example. If
52
-you don't have a running Neo4j instance, you can use
+You can use `deno run --allow-net --allow-sys...` or `deno repl` to run this example.
+
53
+For Deno versions bellow `1.27.1`, you should use the flag `--allow-env` instead of `--allow-sys`.
54
55
+If you don't have a running Neo4j instance, you can use
56
`docker run --rm -p 7687:7687 -e NEO4J_AUTH=neo4j/driverdemo neo4j:4.4` to
57
quickly spin one up.
58
0 commit comments