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.
@bucketco/tracking-sdk
Advanced tools
Isomorphic JS/TS tracking agent for [Bucket.co](https://bucket.co)
Isomorphic JS/TS tracking agent for Bucket.co
The library can be included directly as an external script or you can import it.
A. Script tag (client-side directly in html)
<script src="https://cdn.jsdelivr.net/npm/@bucketco/tracking-sdk@2"></script>
B. Import module (in either node or browser bundling)
import bucket from "@bucketco/tracking-sdk";
// or
var bucket = require("@bucketco/tracking-sdk");
Other languages than Javascript/Typescript are currently not supported by an SDK. You can use the HTTP API directly
// init the script with your Tracking Key
bucket.init("tk123", {});
// set current user
bucket.user("john_doe", { name: "John Doe" });
// set current company
bucket.company("acme_inc", { name: "Acme Inc", plan: "pro" }, "john_doe");
// track events
bucket.track("sent_message", { foo: "bar" }, "john_doe", "company_id");
NOTE: When used in the browser, you can omit the 3rd argument (userId) to the company
and track
methods. See persisting users for more details.
Supply these to the init
call (2nd argument)
{
debug?: false, // enable debug mode to log all info and errors
persistUser?: true | false // default value depends on environment, see below under "persisting users"
host?: "https://tracking.bucket.co",
sseHost?: "https://livemessaging.bucket.co"
}
Bucket can collect qualitative feedback from your users in the form of a Customer Satisfaction Score and a comment.
The Bucket SDK comes with a Live Satisfaction collection mode enabled by default, which lets the Bucket service ask your users for feedback for relevant features just after they've used them.
Note: To get started with automatic feedback collection, make sure you call bucket.user()
.
You can find all the options to make changes to the default behaviour in the Bucket feedback documentation.
Bucket can assist you with collecting your user's feedback by offering a pre-built UI, allowing you to get started with minimal code and effort.
Read the Bucket feedback UI documentation
Feedback can be submitted to Bucket using the SDK:
bucket.feedback({
featureId: "my_feature_id", // String (required), copy from Feature feedback tab
userId: "john_doe", // String, optional if using user persistence
companyId: "acme_inc", // String (optional)
score: 5, // Number: 1-5 (optional)
comment: "Absolutely stellar work!", // String (optional)
});
If you are not using the Bucket SDK, you can still submit feedback using the HTTP API.
See details in Feedback HTTP API
The Bucket SDK doesn't collect any metadata and HTTP IP addresses are not being stored.
For tracking individual users, we recommend using something like database ID as userId, as it's unique and doesn't include any PII (personal identifiable information). If, however, you're using e.g. email address as userId, but prefer not to send any PII to Bucket, you can hash the sensitive data before sending it to Bucket:
import bucket from "@bucketco/tracking-sdk";
import { sha256 } from 'crypto-hash';
bucket.user(await sha256("john_doe"));
You can pass attributes as a object literal to the user
, company
and track
methods (2nd argument).
Attributes cannot be nested (multiple levels) and must be either strings, integers or booleans.
Built-in attributes:
name
(display name for user/company)You can supply additional context
to group
, user
and event
calls.
By default, sending group
, user
and event
calls automatically update the given user/company "Last seen" property.
You can control if "Last seen" should be updated when the events are sent by setting context.active=false
to avoid updating last seen.
This is often useful if you have a background job that goes through a set of companies just to update their attributes or similar
// set current company without updating last seen.
bucket.company("acme_inc", { name: "Acme Inc", plan: "pro" }, "john_doe", {
active: false,
});
Usage in the browser (imported or script tag):
Once you call user
, the userId will be persisted so you don't have to supply userId to each subsequent company
and track
calls.
This is practical for client-side usage where a session always is a single user.
Usage in node.js
User persistence is disabled by default when imported in node.js to avoid that companies or events are tied to the wrong user by mistake. This is because your server is (usually) not in a single user context.
Instead, you should provide the userId to each call, as the 3rd argument to company
and track
.
Types are bundled together with the library and exposed automatically when importing through a package manager.
If you are running with strict Content Security Policies active on your website, you will need to enable these directives in order to use the SDK:
Directive | Values | Module | Reason |
---|---|---|---|
connect-src | https://tracking.bucket.co | tracking | Used for all tracking methods: bucket.user() , bucket.company() , bucket.track() and bucket.feedback() |
connect-src | https://livemessaging.bucket.co | live satisfaction | Server sent events from the Bucket Live Satisfaction service, which allows for automatically collecting feedback when a user used a feature. |
style-src | 'unsafe-inline' | feedback UI | The feedback UI is styled with inline styles. Not having this directive results unstyled HTML elements. |
If you are including the Bucket tracking SDK with a <script>
-tag from jsdelivr.net
you will also need:
Directive | Values | Module | Reason |
---|---|---|---|
script-src-elem | https://cdn.jsdelivr.net | bootstrap | Loads the Bucket tracking SDK from a CDN |
MIT License
Copyright (c) 2023 Bucket ApS
FAQs
Isomorphic JS/TS tracking agent for [Bucket.co](https://bucket.co)
The npm package @bucketco/tracking-sdk receives a total of 379 weekly downloads. As such, @bucketco/tracking-sdk popularity was classified as not popular.
We found that @bucketco/tracking-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.