Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@browsee/web-sdk
Advanced tools
Browsee helps you understand your users better. Browsee's web SDK lets you install Browsee on SPAs or website without having to install javascript manually. Learn more about Browsee at https://docs.browsee.io.
This SDK supports Service Side Rendered (SSR) as well as non-SSR setups.
npm i @browsee/web-sdk --save
yarn add @browsee/web-sdk
import browsee from '@browsee/web-sdk'
;
Call the init()
function with your project's API key either in the main component or in the components where you would like to start Browsee sessions.
You need a valid apiKey
for this SDK. More about getting your API key here.
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import browsee from '@browsee/web-sdk';
import * as serviceWorker from './serviceWorker';
browsee.init({ apiKey: '<Your API Key>' });
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
Assuming universal layout pattern.
import Head from "next/head";
import browsee from '@browsee/web-sdk'
browsee.init({ apiKey: '<Your API Key>' });
export default function Layout(props) {
return (
...
)
}
import { Component } from '@angular/core';
import browsee from '@browsee/web-sdk';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = '...';
constructor() {
browsee.init({ apiKey: '<Your API Key>' });
}
}
import Vue from 'vue';
import App from './App.vue';
import browsee from '@browsee/web-sdk';
browsee.init({ apiKey: '<Your API Key>' });
new Vue({
render: h => h(App),
}).$mount('#app')
Just like client side API, you can use browsee
object to send events, identify
users, or get session URL.
browsee.identify('User ID', {name:...});
browsee.logEvent('Event Name', {key: value, ...});
browsee.getSessionUrl(function(url) { console.log('Current session', url); });
Learn more about these APIs here.
FAQs
Browsee's SDK for web clients.
The npm package @browsee/web-sdk receives a total of 96 weekly downloads. As such, @browsee/web-sdk popularity was classified as not popular.
We found that @browsee/web-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.