Skip to content

Commit 140244c

Browse files
committed
added links in each package to point to each other
1 parent 4e446e6 commit 140244c

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ const dinoBb = require('dino');
2020
// browser
2121
import * as dinoDb from 'https://unpkg.com/dino-db@latest/src/main.es.min.js'
2222
```
23+
24+
Check out on how to expose your database to external apps with the [server extension](https://www.npmjs.com/package/dino-db-server).
25+
26+
Then check out on how to connect to the database with the [JavaScript based client](https://www.npmjs.com/package/dino-db-client)
2327
# Usage
2428
```js
2529
//initialise databse in the app

client/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ const dinoClient = require('dino-db-client');
2020
import * as dinoClient from 'https://unpkg.com/dino-db-client@latest/src/main.es.min.js'
2121
```
2222

23+
First check out how to start a database using the cross platform database module [dino-db](https://www.npmjs.com/package/dino-db)
24+
25+
Then check out on how to expose your database with the [server extension](https://www.npmjs.com/package/dino-db-server) so you can connect using this client.
26+
2327
# Usage
2428
```js
2529
//initialise client on local server with default port (accsesKey is optional and is only required if your server is configered that way)

server/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ npm install dino-db-server
1515
// node only
1616
const dinoServer = require('dino-db-server');
1717
```
18+
First check out how to start a database using the cross platform database module [dino-db](https://www.npmjs.com/package/dino-db)
1819

20+
Then check out on how to connect to the database with the [JavaScript based client](https://www.npmjs.com/package/dino-db-client)
1921
# Usage
2022
```js
2123
//initialise databse in the app

0 commit comments

Comments
 (0)