Skip to content

Commit

Permalink
added links in each package to point to each other
Browse files Browse the repository at this point in the history
  • Loading branch information
imagineeeinc committed Aug 8, 2022
1 parent 4e446e6 commit 140244c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ const dinoBb = require('dino');
// browser
import * as dinoDb from 'https://unpkg.com/dino-db@latest/src/main.es.min.js'
```

Check out on how to expose your database to external apps with the [server extension](https://www.npmjs.com/package/dino-db-server).

Then check out on how to connect to the database with the [JavaScript based client](https://www.npmjs.com/package/dino-db-client)
# Usage
```js
//initialise databse in the app
Expand Down
4 changes: 4 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ const dinoClient = require('dino-db-client');
import * as dinoClient from 'https://unpkg.com/dino-db-client@latest/src/main.es.min.js'
```

First check out how to start a database using the cross platform database module [dino-db](https://www.npmjs.com/package/dino-db)

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.

# Usage
```js
//initialise client on local server with default port (accsesKey is optional and is only required if your server is configered that way)
Expand Down
2 changes: 2 additions & 0 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ npm install dino-db-server
// node only
const dinoServer = require('dino-db-server');
```
First check out how to start a database using the cross platform database module [dino-db](https://www.npmjs.com/package/dino-db)

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

0 comments on commit 140244c

Please sign in to comment.