Skip to content

Commit 384ff6b

Browse files
committed
updated user agent to match package versions
1 parent eb8dd87 commit 384ff6b

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

packages/browser/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
## Exceptionless Browser
22

3-
This package provides native JavaScript support for applications that are built in vanilla HTML and JS.
3+
This package provides native JavaScript support for applications that are built in vanilla HTML and JS.
44

5-
### Installation
5+
### Installation
66

7-
**Package Managers**
7+
**Package Managers**
88

99
`npm install @exceptionless/browser`
1010

1111
or
1212

13-
`yarn add @exceptionless/browser`
13+
`yarn add @exceptionless/browser`
1414

1515

16-
### Configuration
16+
### Configuration
1717

1818
```js
1919
await Exceptionless.startup(c => {

packages/core/src/configuration/Configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ export class Configuration {
469469
* Used to identify the client that sent the events to the server.
470470
*/
471471
public get userAgent(): string {
472-
return "exceptionless-js/2.0.0-pre1";
472+
return "exceptionless-js/2.0.0-dev";
473473
}
474474

475475
/**

packages/node/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
## Exceptionless NodeJS
22

3-
Using Exceptionless in the NodeJS environment is similar to using it in other JavaScript environments.
3+
Using Exceptionless in the NodeJS environment is similar to using it in other JavaScript environments.
44

5-
### Installation
5+
### Installation
66

7-
Using npm:
7+
Using npm:
88

99
`npm i @exceptionless/node`
1010

11-
Using yarn:
11+
Using yarn:
1212

13-
`yarn add @exceptionless/node`
13+
`yarn add @exceptionless/node`
1414

15-
### Configuration
15+
### Configuration
1616

17-
When your NodeJS app starts up, it should tell the Exceptionless client to startup like this:
17+
When your NodeJS app starts up, it should tell the Exceptionless client to startup like this:
1818

1919
```js
2020
await Exceptionless.startup(c => {
@@ -40,12 +40,12 @@ await Exceptionless.startup(c => {
4040
});
4141
```
4242

43-
Once that's done, you can use the Exceptionless client anywhere in your app by calling `Exceptionless` followed by the method you want to use. For example:
43+
Once that's done, you can use the Exceptionless client anywhere in your app by calling `Exceptionless` followed by the method you want to use. For example:
4444

4545
```js
4646
Exceptionless.submitLog("Hello, world");
4747
```
4848

49-
### Using With Express
49+
### Using With Express
5050

51-
When using this package with an Express server, you should call `exceptionless.startup()` when the server starts. There are many ways to do this, but it's important that the client is instantiated before the server is used.
51+
When using this package with an Express server, you should call `exceptionless.startup()` when the server starts. There are many ways to do this, but it's important that the client is instantiated before the server is used.

0 commit comments

Comments
 (0)