@statsig/web-analytics 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +41 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,7 +1,45 @@
1
- # Statsig Web Analytics
1
+ <h1 align="center">
2
+ <img src="https://github.com/statsig-io/js-client-monorepo/assets/95646168/ae5499ed-20ff-4584-bf21-8857f800d485" />
3
+ <div />
4
+ <a href="https://statsig.com/?ref=gh_jsm">Statsig</a>
5
+ </h1>
2
6
 
3
- Web analytics lets you track and watch key measures for your website easily. It is different from product analytics because it's simpler and more direct, making it great for marketers, web site maintainers, or anyone familiar with tools like Google Analytics.
7
+ <p align="center">
8
+ <a href="https://github.com/statsig-io/js-client-monorepo/blob/main/LICENSE">
9
+ <img src="https://img.shields.io/badge/license-ISC-blue.svg?colorA=1b2528&colorB=ccfbc7&style=for-the-badge">
10
+ </a>
11
+ <a href="https://www.npmjs.com/package/@statsig/js-client">
12
+ <img src="https://img.shields.io/npm/v/@statsig/js-client.svg?colorA=1b2528&colorB=b2d3ff&style=for-the-badge">
13
+ </a>
14
+ <a href="https://statsig.com/community?ref=gh_jsm">
15
+ <img src="https://img.shields.io/badge/slack-statsig-brightgreen.svg?logo=slack&colorA=1b2528&colorB=FFF8BA&style=for-the-badge">
16
+ </a>
17
+ </p>
18
+
19
+ Statsig helps you move faster with feature gates (feature flags), and/or dynamic configs. It also allows you to run A/B/n tests to validate your new features and understand their impact on your KPIs. If you're new to Statsig, check out our product and create an account at [statsig.com](https://www.statsig.com/?ref=gh_jsm).
4
20
 
5
21
  ## Getting Started
6
22
 
7
- Read through the [Documentation](https://docs.statsig.com/webanalytics/overview) or check out the [Samples](https://github.com/statsig-io/js-client-monorepo/tree/main/samples).
23
+ Read through the [Documentation](https://docs.statsig.com/client/javascript-sdk?ref=gh_jsm) or check out the [Samples](samples/).
24
+
25
+ ## Packages
26
+
27
+ Clients
28
+
29
+ - [Precomputed Evaluations (Recommended)](packages/js-client/README.md)
30
+ - [On Device Evaluations](packages/js-on-device-eval-client/README.md)
31
+
32
+ Product Bundles
33
+
34
+ - [Session Replay](packages/session-replay/README.md)
35
+ - [Web Analytics](packages/web-analytics/README.md)
36
+
37
+ Framework Specific Bindings
38
+
39
+ - [React](packages/react-bindings/README.md)
40
+ - [React Native](packages/react-native-bindings/README.md)
41
+ - [React Native (Expo)](packages/expo-bindings/README.md)
42
+
43
+ ## Community
44
+
45
+ If you need any assitance or just have a question, feel free to reach out to us on [Slack](https://statsig.com/community?ref=gh_jsm).
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@statsig/web-analytics",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "dependencies": {
5
- "@statsig/client-core": "1.0.0",
6
- "@statsig/js-client": "1.0.0"
5
+ "@statsig/client-core": "1.0.1",
6
+ "@statsig/js-client": "1.0.1"
7
7
  },
8
8
  "jsdelivr": "./build/statsig-web-analytics.min.js",
9
9
  "type": "commonjs",