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 🙏

© 2026 – Pkg Stats / Ryan Hefner

apuesta-cloud-landing-utils

v1.0.6

Published

## install lib: ``` npm i apuesta-cloud-landing-utils ```

Downloads

24

Readme

Apuesta.cloud landing utils

install lib:

npm i apuesta-cloud-landing-utils

Usage

import { initAppAndGetActiveDomain } from "apuesta-cloud-landing-utils";

On App start always run async function

initAppAndGetActiveDomain(redirectorOrigin, redirectorCampaignId)

redirectorOrigin and redirectorCampaignId mus be provided to you by Apuesta.cloud

In response, you will receive ActiveDomainData:

type ActiveDomainData = {
  domain: string;
  path: string;
  paramsString: string;
}

After form fill you will need to fill the RegisterFormData object and call the RegisterPlayer(domain: string, data: RegisterFormData) method.

type RegisterFormData = {
  email: string | null; // max_len: 64, standart email
  phone: string | null; // in format +1232123123
  password: string; // min_len: 5, max_len: 64
  currency: string;  // len = 3, one of supported currencies for selected region on the destination site
  promoCode?: string; // max_len: 64
  loginType: LoginType;
  region: string; // empty for default
  language: string; // one of supported langeages for selected region on the destination site. Ex: 'en', 'de', 'fr'
};

In response of RegisterPlayer() you will receive Promise<{ refresh_token: string }>

RegisterPlayer(activeDomainData.domain, requestData)
  .then((response) => {
    const linkToNavigate = getLinkToNavigate({ activeDomainData: domainData, refreshToken: response.refresh_token });
    if (linkToNavigate) {
      // optional - if you want to redirect on start on casino
      localStorage.setItem('was-registered', 'true');
      window.location.href = linkToNavigate;
    }
  })
  .catch(() => {
    const linkToNavigate = getLinkToNavigate({ activeDomainData, isError: true });
    if (linkToNavigate) {
      window.location.href = linkToNavigate;
    }
  })

In order to login user on the destination website - Site will need the refresh_token and other params from activeDomainData. That's why linkToNavigate is get via helper function getLinkToNavigate()

Full React example

import { useEffect, useState } from 'react';
import {
  type ActiveDomainData,
  getLinkToNavigate,
  initAppAndGetActiveDomain,
  LoginType,
  RegisterPlayer,
} from 'apuesta-cloud-landing-utils';

function App() {
  const [isLoading, setIsLoading] = useState(false);
  const [domainData, setDomainData] = useState<ActiveDomainData | null>(null);
  const [error, setError] = useState('');

  useEffect(() => {
    setIsLoading(true)
    initAppAndGetActiveDomain('https://redirector.origin', 'campaignId')
      .then((response) => {
        setDomainData(response);
        setIsLoading(false);
      })
      .catch((e) => {
        setError(e.message);

      })
      .finally(() => setIsLoading(false));
  }, []);

  const handleRegisterClick = async () => {
    if (!domainData) {
      alert('No domain data found.');
      return;
    }

    const response = await RegisterPlayer(domainData?.domain, {
      email: '[email protected]',
      phone: null,
      currency: 'EUR',
      language: 'en',
      password: 'qwerty123',
      loginType: LoginType.Email,
      region: '',
    });

    const linkToNavigate = getLinkToNavigate({ activeDomainData: domainData, refreshToken: response.refresh_token });
    if (linkToNavigate) {
      window.location.href = linkToNavigate;
    }
  };

  if (isLoading) {
    return <h1>Loading</h1>
  }

  if (error) {
    return <h1 style={{color:'red'}}>{error}</h1>
  }

  return (
    <>
      <h1> Apuesta.cloud registration test </h1>
      <h2> Here should be form </h2>
      <div className="card">
        <button type={'button'} onClick={handleRegisterClick}>
          Register
        </button>
      </div>
      <p className="read-the-docs">
        Click Register button and receive refresh_token
      </p>
    </>
  )
}

export default App