Skip to content

Commit 6e0cf40

Browse files
authored
Update README.md
1 parent 061f219 commit 6e0cf40

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ app.use('/', cmd.microCom('microserviceName', 'databaseType', 'databaseURL', 'wa
2424
Chronos consists of a [Node](https://nodejs.org/en/) module available through the
2525
[npm registry](https://www.npmjs.com/) and a lightweight [Electron](https://electronjs.org/) desktop application.
2626

27-
To begin, install the [Chronos](https://www.npmjs.com/package/chronos-microservice-debugger3) Node module within each microservice of your application using the
28-
[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
27+
To begin, install the [Chronos](https://www.npmjs.com/package/chronos-microservice-debugger3) node module within each microservice of your application using the
28+
[`npm install`](https://docs.npmjs.com/getting-started/installing-npm-packages-locally)command:
2929

3030
```bash
3131
$ npm install chronos-microservice-debugger3
@@ -44,7 +44,7 @@ app.use('/', cmd.microCom('microserviceName', 'databaseType', 'databaseURL', 'wa
4444

4545
The cmd.microCom handler function logs communication and health data to a user-provided database. This is to ensure that your private data stays private. We currently support MongoDB and SQL/PostgreSQL databases.
4646

47-
cmd.microCom has four parameters and an optional fifth parameter. You can enter the arguments as individual strings or as an array.
47+
cmd.microCom takes four parameters and an optional fifth parameter. You can enter the arguments as individual strings or as an array.
4848

4949
The parameters are:
5050
1. microserviceName: To identify the microservice (i.e. "payments")
@@ -60,15 +60,15 @@ The parameters are:
6060

6161
String parameter example:
6262
```javascript
63-
app.use('/', cmd.microCom('payments', 'mongo', 'mongodb+srv://user:password@cluster0-abcdefg.mongodb.net/','yes','h'))
63+
app.use('/', cmd.microCom('payments', 'mongo', 'mongodb+srv://user:password@cluster0-abc.mongodb.net/','yes','h'))
6464
```
6565

6666
Array parameter example:
6767
```javascript
6868
let values = [
6969
'payments',
7070
'mongo',
71-
'mongodb+srv://user:password@cluster0-abcdefg.mongodb.net/',
71+
'mongodb+srv://user:password@cluster0-abc.mongodb.net/',
7272
'yes',
7373
'h'
7474
]

0 commit comments

Comments
 (0)