GithubHelp home page GithubHelp logo

isabella232 / analytics-next Goto Github PK

View Code? Open in Web Editor NEW

This project forked from segmentio/analytics-next

0.0 0.0 0.0 3.33 MB

The next version of AJS

License: MIT License

Shell 0.18% JavaScript 1.64% TypeScript 87.06% CSS 4.32% Makefile 0.73% HTML 6.07%

analytics-next's Introduction

Analytics Next

Analytics Next (aka Analytics 2.0) is the latest version of Segment’s JavaScript SDK - enabling you to send your data to any tool without having to learn, test, or use a new API every time.

Table of Contents


🏎️ Quickstart

The easiest and quickest way to get started with Analytics 2.0 is to use it through Segment. Alternatively, you can install it through NPM and do the instrumentation yourself.

πŸ’‘ Using with Segment

  1. Create a javascript source at Segment - new sources will automatically be using Analytics 2.0! Segment will automatically generate a snippet that you can add to your website. For more information visit our documentation).

  2. Start tracking!

πŸ’» Using as an NPM package

There is a React example repo which outlines using the Segment npm package.

  1. Install the package
# npm 
npm install @segment/analytics-next

# yarn
yarn add @segment/analytics-next

#pnpm
pnpm add @segment/analytics-next
  1. Import the package into your project and you're good to go (with working types)!
import { Analytics, AnalyticsBrowser, Context } from '@segment/analytics-next' 

async function loadAnalytics(): Promise<Analytics> { 
  const [ analytics, context ] = await AnalyticsBrowser.load({ writeKey }) 
  return analytics 
}

using React

There is a React example repo which outlines using the Segment snippet and using the Segment npm package.

using Vite with Vue 3

  1. add to your index.html
<script>
  window.global = window
  var exports = {}
</script>
  1. create composable file segment.ts with factory ref analytics:
import { ref, reactive } from 'vue'
import { Analytics, AnalyticsBrowser } from '@segment/analytics-next'

const analytics = ref<Analytics>()

export const useSegment = () => {
  if (!analytics.value) {
    AnalyticsBrowser.load({
      writeKey: '<YOUR_WRITE_KEY>',
    })
      .then(([response]) => {
        analytics.value = response
      })
      .catch((e) => {
        console.log('error loading segment')
      })
  }

  return reactive({
    analytics,
  })
}
  1. in component
<template>
  <button @click="track()">Track</button>
</template>

<script>
import { defineComponent } from 'vue'
import { useSegment } from './services/segment'

export default defineComponent({
  setup() {
    const { analytics } = useSegment()
    
    function track() { 
      analytics?.track('Hello world')
    }
    
    return {
      track
    }
  }
})
</script>

πŸ’ Development

First, clone the repo and then startup our local dev environment:

$ git clone [email protected]:segmentio/analytics-next.git
$ cd analytics-next
$ make dev

Then, make your changes and test them out in the test app!

Example of the development app

πŸ”Œ Plugins

When developing against Analytics Next you will likely be writing plugins, which can augment functionality and enrich data. Plugins are isolated chunks which you can build, test, version, and deploy independently of the rest of the codebase. Plugins are bounded by Analytics Next which handles things such as observability, retries, and error management.

Plugins can be of two different priorities:

  1. Critical: Analytics Next should expect this plugin to be loaded before starting event delivery
  2. Non-critical: Analytics Next can start event delivery before this plugin has finished loading

and can be of five different types:

  1. Before: Plugins that need to be run before any other plugins are run. An example of this would be validating events before passing them along to other plugins.
  2. After: Plugins that need to run after all other plugins have run. An example of this is the segment.io integration, which will wait for destinations to succeed or fail so that it can send its observability metrics.
  3. Destination: Destinations to send the event to (ie. legacy destinations). Does not modify the event and failure does not halt execution.
  4. Enrichment: Modifies an event, failure here could halt the event pipeline.
  5. Utility: Plugins that change Analytics Next functionality and don't fall into the other categories.

Here is an example of a simple plugin that would convert all track events event names to lowercase before the event gets sent through the rest of the pipeline:

export const lowercase: Plugin = {
  name: 'Lowercase events',
  type: 'before',
  version: '1.0.0',

  isLoaded: () => true,
  load: () => Promise.resolve(),

  track: (ctx) => {
    ctx.event.event = ctx.event.event.toLowerCase()
    return ctx
  },
  identify: (ctx) => ctx,
  page: (ctx) => ctx,
  alias: (ctx) => ctx,
  group: (ctx) => ctx,
  screen: (ctx) => ctx,
}

For further examples check out our existing plugins.

πŸ§ͺ Testing

The tests are written in Jest and can be run be using make test-unit Linting is done using ESLint and can be run using make lint.

βœ… Unit Testing

Please write small, and concise unit tests for every feature you work on.

$ make test-unit # runs all tests
$ yarn jest src/<path> # runs a specific test or tests in a folder

analytics-next's People

Contributors

nettofarah avatar pooyaj avatar danieljackins avatar dependabot[bot] avatar chrisradek avatar arielsilvestri avatar juliofarah avatar silesky avatar williamgrosset avatar zikaari avatar reslear avatar bryanmikaelian avatar 509dave16 avatar gpsamson avatar kurtfurbush avatar mericsson avatar nicholasluimy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.