https://github.com/requestly/requestly-web-sdk
https://github.com/requestly/requestly-web-sdk
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/requestly/requestly-web-sdk
- Owner: requestly
- License: agpl-3.0
- Created: 2022-05-18T11:32:52.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T02:30:36.000Z (over 1 year ago)
- Last Synced: 2025-04-03T02:02:54.329Z (11 months ago)
- Language: TypeScript
- Size: 1.63 MB
- Stars: 12
- Watchers: 10
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Requestly Web SDK
## Installation
### Add to website as `` tag
```html
<script src="https://unpkg.com/@requestly/web-sdk@latest/dist/requestly-web-sdk.min.js" crossorigin>
```
This would expose `Requestly` as a global variable.
### Add as NPM dependency
#### NPM:
```sh
npm install @requestly/web-sdk --save
```
#### Yarn:
```sh
yarn add @requestly/web-sdk
```
Import in project as ES module:
```javascript
import * as Requestly from '@requestly/web-sdk';
```
## Getting Started
Check documentation for different modules exposed by SDK.
- [SessionRecorder](documentation/SessionRecorder.md)
- [Network](documentation/Network.md)