Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@gitlab/application-sdk-js
Advanced tools
This SDK is for usage of GitLab Application Services with vanilla Javascript.
yarn build
builds the npm packages and the classic browser libraryyarn test
builds the packages and runs jest testsyarn clean
cleans the dist folderyarn lerna:publish
to publish a newly built package. You need to run npm login
with your personal npm login before.Add the NPM package to your package JSON using your preferred package manager:
yarn add @gitlab/application-sdk-js
--
npm i @gitlab/application-sdk-js
Then for browser usage you can import the client SDK:
import { glClientSDK } from '@gitlab/application-sdk-js';
this.glClient = glClientSDK({ appId, host });
Or for Node.js you can require the client SDK instead (if ES modules are not supported):
const { glClientSDK } = require('@gitlab/application-sdk-js');
this.glClient = glClientSDK({ appId, host });
Add the script to the page and assign the client SDK to window
:
<script src="https://unpkg.com/@gitlab/application-sdk-js/dist/gl-sdk.min.js"></script>
<script>window.glClient = window.glSDK.glClientSDK({
appId: 'YOUR_APP_ID',
host: 'YOUR_HOST',
});</script>
Note: You can use specific version with like this,
<script src="https://unpkg.com/@gitlab/application-sdk-js@0.0.5/dist/gl-sdk.min.js"></script>
Option | Description |
---|---|
appId | This is the ID given by the GitLab Project Analytics setup guide. This is used to make sure your data is sent to your analytics instance. |
host | This is the GitLab Project Analytics instance that is given by the setup guide. |
hasCookieConsent | To use cookies to identify unique users and record their full IP address, set to true . This is set to false by default. When false , unique users are identified using fingerprinting instead of cookies and only records the first three octets of the IP address. Fingerprinting is sufficient enough to identify most unique users whilst maintaining some privacy. Learn more. |
respectGlobalPrivacyControl | To respect the user's GPC configuration to permit or refuse tracking. This is set to true by default. When false , events will be emitted regardless of user configuration. |
identify
Used to associate a user and their attributes with the session and tracking events.
glClient.identify(userId, userAttributes)
Property | Type | Description |
---|---|---|
userId | String | The user identifier your application users to identify individual users. |
userAttributes | Object /Null /undefined | The user attributes that need to be added to the session and tracking events. |
page
Used to trigger a pageview event.
glClient.page(eventAttributes)
Property | Type | Description |
---|---|---|
eventAttributes | Object /Null /undefined | The event attributes that need to be added to the pageview event. |
track
Used to trigger a custom event.
glClient.track(eventName, eventAttributes)
Property | Type | Description |
---|---|---|
eventName | String | The name of the event. |
eventAttributes | Object /Null /undefined | The event attributes that need to be added to the tracked event. |
To develop with a local Snowplow pipeline you can use the Analytics devkit's snowplow setup.
curl -X POST http://localhost:4567/setup-project/example -u [username]:[password]
to set up Clickhouse for receiving events from the GDK. Use the credentials for the analytics-configurator.app_id
that is returned from the configurator.examples/vanilla-js/src/index.js
to point at your local devkit and projectconst SNOWPLOW_COLLECTOR_URL = 'localhost:9091';
const APPLICATION_ID = '[app_id from configurator]';
yarn build
at the root of gl-application-sdk-js
.yarn serve
within examples/vanilla-js
gdk start
SELECT * from example.snowplow_events Order by collector_tstamp desc
to see the incoming eventsFAQs
Client side JS SDK for GitLab Application services
We found that @gitlab/application-sdk-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.