You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

reodotdev

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reodotdev

A utility tool to tap into usage behaviour and relay metrics

1.0.0
latest
npmnpm
Version published
Maintainers
1
Created
Source

Quick start

NPM

npm i reodotdev
# or
yarn add reodotdev
import { loadReoScript } from 'reodotdev'

// Declare clientID from environment variable or directly as string
const clientID = process.env.CLIENT_ID || "XXXXXXXXXX";
// Resolve promise to get access to methods on Reo
const reoPromise = loadReoScript({ clientID });
reoPromise
  .then(Reo => {
     Reo.init({ clientID });
  })
const identity = {
  username: 'johndoe@microsoft.com',
  type: 'email',   // can be one of email, github, linkedin, gmail, userID,
  firstname: 'John',
  lastname: 'Doe',
  company: 'Microsoft'
}
Reo.identify(identity);

FAQs

Package last updated on 15 Nov 2023

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