Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
attiasas committed Mar 26, 2024
1 parent b97629b commit b6304ff
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Add jfrog-client-js as a dependency to your package.json file:
- [Register For Web Login](#register-for-web-login)
- [Get Access Token From Web Login](#get-access-token-from-web-login)
- [Xsc](#xsc)
- [Getting Xsc Version](#getting-xsc-version)
- [Sending Log Message Event](#sending-log-mesage-event)
- [Sending Start Scan Event](#sending-start-scan-event)
- [Sending End Scan Event](#sending-end-scan-event)
Expand Down Expand Up @@ -350,6 +351,23 @@ Please note that you need to replace 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX' with

### Xsc

#### System

##### Getting Xsc Version

```javascript
jfrogClient
.xsc()
.system()
.version()
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
```

#### Event

##### Sending Log Message Event
Expand Down Expand Up @@ -394,4 +412,3 @@ jfrogClient
console.error(error);
});
```

0 comments on commit b6304ff

Please sign in to comment.