https://rapidsf.net/

Submitted URL:
https://rapidsf.net/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 33 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 130 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="theme-color" content="#000000"><meta name="description" content="Web site created using create-react-app"><script>/* eslint-disable no-undef */
(function indexRuntime(resourcePaths) {
    console.log(resourcePaths);
    window.localStorage.clear()
    const { hostname } = window.location;
    let env = 'prod';
    let cdnDomain = 'https://envPlaceHolder-cdn.go2bankonline.com/app/';

    if (hostname === 'localhost') {
        env = 'dev';
    }

    if (
        hostname.includes('go2bankonline') ||
        (hostname.includes('rapidwages') && hostname.includes('-')) ||
        (hostname.includes('go2bank.com') && hostname.includes('-')) ||
        (hostname.includes('corppayments') && hostname.includes('-'))
    ) {
        [env] = hostname.split('-');
    }

    if (
        hostname.includes('rapidfs') &&
        (hostname.includes('dev.') ||
            hostname.includes('qa.') ||
            hostname.includes('pie'))
    ) {
        [env] = hostname.split('.');
    }

    if (
        hostname.includes('rapidadmin') &&
        (hostname.includes('dev.') ||
            hostname.includes('qa.') ||
            hostname.includes('pie.'))
    ) {
        [env] = hostname.split('.'); 
    }

    cdnDomain = cdnDomain.replace('envPlaceHolder', env);
    console.log('cdnDOmain', cdnDomain);

    const scripts = [];
    const styles = [];
    resourcePaths.forEach((curValue) => {
        if (curValue.includes('.js')) {
            scripts.push(curValue);
        } else if (curValue.includes('.css')) {
            styles.push(curValue);
        }
    });

    console.log('scripts, styles', scripts, styles);
    styles.forEach((styleLink) => {
        const absLink = cdnDomain + styleLink;

        const link = document.createElement('link');
        link.rel = 'stylesheet';
        link.href = absLink;
        document.head.appendChild(link);
    });

    scripts.forEach((scriptSrc) => {
        const absLink = cdnDomain + scriptSrc;

        const script = document.createElement('script');
        script.src = absLink;
        document.head.appendChild(script);
    });
})(["static/js/main.b6f43e7d.js","static/css/main.7932d68d.css"]);
</script><link rel="stylesheet" href="https://prod-cdn.go2bankonline.com/app/static/css/main.7932d68d.css"><script src="https://prod-cdn.go2bankonline.com/app/static/js/main.b6f43e7d.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root" class="blue-sky-app-root"></div></body></html>