@pageactions/page-actions-js 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# page-actions-js
|
|
2
2
|
|
|
3
|
-
This is a [Node.js](https://nodejs.org/en) library that allows publishing events to Page Actions analytics
|
|
3
|
+
This is a [Node.js](https://nodejs.org/en) library that allows publishing events to the [Page Actions](https://www.page-actions.com) analytics. It's intended for any JS browser application regardless of used framework.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -18,7 +18,7 @@ Basically by creating `PageActions` service and later calling functions when eve
|
|
|
18
18
|
|
|
19
19
|
```ts
|
|
20
20
|
const pageActions = new PageActions("your-site-id.com")
|
|
21
|
-
.collector("https://page-actions.com/collector")
|
|
21
|
+
.collector("https://app.page-actions.com/collector")
|
|
22
22
|
.accountId("your-account-id");
|
|
23
23
|
```
|
|
24
24
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pageactions/page-actions-js",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.9.1",
|
|
4
|
+
"description": "Page Actions JavaScript client library",
|
|
5
5
|
"keywords": [],
|
|
6
|
-
"homepage": "https://
|
|
6
|
+
"homepage": "https://www.page-actions.com",
|
|
7
7
|
"bugs": {
|
|
8
8
|
"url": "https://github.com/pageactions/page-actions-js/issues"
|
|
9
9
|
},
|