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
+37-15Lines changed: 37 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,10 +37,13 @@ To get started, just clone the project. You'll need a local copy of Stardog to b
37
37
Go to [http://stardog.com](http://stardog.com), download and install the database and load the data provided in `data/` using the script in the repository.
38
38
39
39
1. Start the Stardog server
40
+
40
41
```bash
41
42
stardog-admin server start
42
43
```
44
+
43
45
2. Install `stardog.js` dependencies:
46
+
44
47
```bash
45
48
npm install
46
49
```
@@ -81,19 +84,20 @@ After releasing, be sure to push to master, including the tags (so that the rele
81
84
82
85
Each release of stardog.js is tested against the most recent version of Stardog available at the time of the release. The relationship between versions of stardog.js and versions of Stardog is detailed in the following table:
83
86
84
-
| stardog.js Version | Supported Stardog Version(s) |
We support and maintain a particular version of stardog.js only if the corresponding Stardog version(s) is (are) officially supported and maintained. For example, we no longer support v0.x.x of stardog.js, as the corresponding Stardog versions are no longer supported. (That said, later versions of stardog.js will often _mostly_ work with earlier Stardog versions. We just don't test this or make any guarantees to that effect.)
95
98
96
99
## Quick Example
100
+
97
101
```js
98
102
const { Connection, query } =require('stardog');
99
103
@@ -103,13 +107,21 @@ const conn = new Connection({
0 commit comments