npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

user-experior-web

v0.2.55

Published

UserExperior's Web Application Performance Monitoring

Downloads

4,712

Readme

UserExperior Web SDK

UserExperior's web application performance monitoring sdk.

Installation

  • Via Package Manager
    npm install user-experior-web
  • Via CDN
    <script src="https://unpkg.com/user-experior-web@latest/bundle/ue-web-bundle.js"></script>

Initializing UserExperior

startRecording(versionKey, options?)

  • For NPM

    import UserExperior from "user-experior-web";
    
    const ue = new UserExperior();
    
    ue.startRecording("your-version-key-here");
  • For Script

    <script type="module">
      const ue = new UserExperior.init();
    
      ue.startRecording("your-version-key-here");
    </script>

    Method parameters

    1. versionKey - (REQUIRED) string
      Your User Experior License or Project key.

    2. options - (optional) object
      Initialization options.

      Availabe options properties


      • sessionReplay - (optional) object
        Session Replay initialization options.

        Availabe sessionReplay properties


        • maskAllInputs (default: false) - (optional) boolean
          Mask all input content as *

        • maskInputOptions (default: { password: true, email: true, tel: true }) - (optional) object
          Mask some kinds of input *

          Availabe Mask Input Options:
          {
              color: boolean,
              date: boolean,
              'datetime-local': boolean,
              email: boolean,
              month: boolean,
              number: boolean,
              range: boolean,
              search: boolean,
              tel: boolean,
              text: boolean,
              time: boolean,
              url: boolean,
              week: boolean,
              textarea: boolean,
              select: boolean,
              password: boolean
          }
          

    Example
    Showing an example with all possible default options.

    ue.startRecording("5a77c399-61cd-4848-9a46-9c0c21263430", {
        sessionReplay: { 
            maskAllInputs: false,
            maskInputOptions: {
                password: true,
                email: true,
                tel: true,
                color: false,
                date: false,
                'datetime-local': false,
                month: false;
                number: false;
                range: false;
                search: false;
                text: false;
                time: false;
                url: false;
                week: false;
                textarea: false;
                select: false;
            }
        }
    });

Initializing User (or) Set User Identifier

setUserIdentifier(userIdentifier)

  • Syntax

    ue.setUserIdentifier('unique-user-identifier')
  • Example

    ue.setUserIdentifier("[email protected]");
  • Method parameters

    userIdentifier - (REQUIRED) string
    User's unique identifier (eg. Email Id, Phone Number, etc.)

Send additional user information

setUserProperties(userTraits)

  • Syntax

    ue.setUserProperties({
        key1: value1,
        key2: value2, 
        ...
    })
  • Example

    ue.setUserProperties({
        "start_date": "2020/12/31",
        "plan_subscribed": "trial",
        "user_type": "guest"
    });
  • Method parameters

    userTraits - (REQUIRED) object
    User related additional information (eg. user type, plan type, etc.)

Log Event

logEvent(eventName, eventProperties?)

  • Syntax

    ue.logEvent("YOUR_EVENT", {
        key1: value1,
        key2: value2, 
        ...
    })
  • Example

    ue.logEvent("Profile Created", {
        "organisation": "Google",
        "user_type": "guest"
    });
  • Method parameters

    eventName - (REQUIRED) string
    Custom event name (eg. profile created, visited pricing, etc.)

    eventProperties - (optional) object
    Event related additional information (eg. has_upgraded, etc.)

Unset User Identifier

unsetUserIdentifier()

  • Syntax

    ue.unsetUserIdentifier()
  • Example

    ue.setUserIdentifier();