Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@getcircuit/analytics
Advanced tools
@getcircuit/analytics
A thin analytics abstraction layer for Circuit's applications. It implements a basic plugin system for integrating with different analytics services.
import {
Analytics,
googleAnalytics,
facebookPixel,
} from '@getcircuit/analytics'
export const analytics = Analytics({
/** Current environment. Accessed by plugins.*/
env: process.env.NODE_ENV,
/** If true, logs every track call that is being made. (default: false) */
debug: process.env.NODE_ENV === 'development',
/** If true, tracking requests are not sent */
dryRun: 'production',
/** List of service plugins */
plugins: [
googleAnalytics({
trackingId: 'UA-XXXXXX-X',
}),
facebookPixel({
pixelId: 'xxxxxxx',
}),
],
/**
* Optional map of hooks => plugin names.
* Any plugin listed here will need to be explicitly included to have the related hook executed.
* */
explicitUse: {
event: [...],
pageview: [...],
...,
}
})
After initializing, you can use the abstraction layer to send:
analytics.event(...)
analytics.pageview(...)
analytics.identify(...)
analytics.anonymize(...)
analytics.info(...)
analytics.warn(...)
analytics.error(...)
Only plugins that implement the hook will be executed. The load
of each plugin is deferred until one of its hooks are executed, which means that any analytics code will only be added to the DOM when sending a tracking request.
A plugin is just an object with a specific set of methods, which we call 'hooks' and a name
property. The only mandatory hook is the load()
, responsible for adding the service script to the DOM.
{
name: string
load: () => MaybePromise
unload?: () => MaybePromise
pageview?: (opts: PageviewOptions) => MaybePromise
event?: (opts: TrackEventOptions) => MaybePromise
identify?: (opts: IdentifyOptions) => MaybePromise
anonymize?: () => MaybePromise
info?: (opts: TraceOptions) => MaybePromise
warn?: (opts: TraceOptions) => MaybePromise
error?: (opts: TraceOptions) => MaybePromise
}
Apart from load
and unload
, each hook correspond to a method in the abstraction layer.
Every hook has access to a this
object which contains:
type PluginContext = {
/** Configs passed onto the library */
config: {
env: string
appName: string
appVersion: string
debug: boolean
}
/** Helper method to assert that an object has received certain props */
assertKeys: (object, requiredKeys) => void
/** Helper method to assert that every passed value is not undefined */
assertValues: (objectOfValues) => void
}
FAQs
Unknown package
We found that @getcircuit/analytics demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 19 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.