Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

snowplow-analytics-sdk

Package Overview
Dependencies
Maintainers
4
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snowplow-analytics-sdk

Snowplow JavaScript and TypeScript Analytics SDK

  • 0.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
54
decreased by-55.37%
Maintainers
4
Weekly downloads
 
Created
Source

Snowplow JavaScript and TypeScript Analytics SDK

NPM Tests Code Coverage License

This JavaScript SDK provides an ability to work with Snowplow enriched events in your JavaScript or TypeScript event processing, data modeling, and machine-learning jobs. You can also use this SDK with AWS Lambda.

Currently, the JavaScript Analytics SDK provides the JSON Event Transformer only.

You can find more information about Snowplow Analytics SDKs in general on Snowplow Wiki.

Install

npm install --save snowplow-analytics-sdk

Usage

In your app.js:

const { transform } = require('snowplow-analytics-sdk');

module.exports.handler = (input) => {
  let event = transform(
    new Buffer(input.Records[0].kinesis.data, 'base64').toString('utf8'),
  );

  // ...
};

Or in app.ts:

import { transform } from 'snowplow-analytics-sdk';

export function handler(input: any) {
  let event = transform(
    new Buffer(input.Records[0].kinesis.data, 'base64').toString('utf8'),
  );

  // ...
}

API

transform(event: string): Event

  • event: string - TSV string containing event data.

Returns decoded Snowplow enriched event.

The Snowplow Scala Analytics SDK is copyright 2018-2021 dokmic, Snowplow Analytics Ltd.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this software except in compliance with the License.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Keywords

FAQs

Package last updated on 17 Oct 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc