Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@artsy/cohesion
Advanced tools
Requirements: Yarn
yarn install
yarn test
yarn docs
To view docs locally, visit the full filepath of docs/index.html
in your browser, i.e, file:///Users/<MY_USER>/<MY_LOCAL_DIRECTORY>/cohesion/doc/index.html
The /Schema
directory represents the Artsy's analytics schema, and describes expectations for data consumed by Redshift and Segment.
This schema is maintained by Artsy's data team, engineers should not expect to change these files.
Valid analytics events are described in /Schema/Events/index.ts
, and individual event schemas live in the Schema/Events
directory, divided by concern.
Typings for all allowed values, such as ContextModule
, are exported for use by engineers in consuming projects.
Schema/Events
, add the name of the new event. This name defines the corresponding downstream table's name in Redshift, and should use the lowerCamelCase
naming convention.// Schema/Events/index.ts
export enum ActionType {
...
myNewEvent = "myNewEvent",
...
}
Schema/Events
directory, create a new interface describing the shape of the new event, as it is received in Segment/Redshift.ActionType
created in step 1, but use the UpperCamelCase
naming convention.action
key is required and should match the ActionType
created in step 1.ContextModule
, add new values to the existing typings in the Schema directory.// Schema/Events/MyNewEvent.ts
export interface MyNewEvent {
action: ActionType.myNewEvent
context_module: ContextModule
optional_property?: string
required_property: number
}
In Schema/Events/index.ts
, add the new interface to the valid events master list, Event
Add descriptive comments with examples to explain the use of your new event. Our documentation is generated automatically from in-code comments, find more information on syntax in the typedoc
docs.
If you have created any new files, add an export statement to Schema/index.ts
like so:
// Schema/index.ts
export * from "./Events/MyNewEvent"
PR your changes. Once merged, the schema will be updated and your new event and values will be available to consumers of this package.
Data analysts should request an engineer to construct a new event helper for the /Helpers
directory (see below).
The /Helpers
directory contains javascript helpers that return schema-compliant analytics events, and provide some useful default values. Each helper corresponds to one event from /Schema/Events
.
Engineers should use these helpers whenever sending analytics data to Segment, for example, when creating an analytics event with react-tracking
.
v1.23.0 (Tue Jul 28 2020)
FAQs
Analytics schema
The npm package @artsy/cohesion receives a total of 3,172 weekly downloads. As such, @artsy/cohesion popularity was classified as popular.
We found that @artsy/cohesion 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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonarโs acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.