APIs & Domo Developer

APIs & Domo Developer

Connecting to domo.js in React app not working

Hello all,

I am a first time domo app dev trying to create a React app. I used the Quickstart instructions for creating a React app using the template and everything seemed to be setup correctly . When I try to use 'domo.get()' or 'domo.env..', I get a 'domo not defined' error in my application.

I am logging into my DOMO instance successfully:

domo-login.png

however, when I run npm start and go to the page where that call is being made, The app shows that 'domo is not defined':

domo-not-defined.png

The console.log just reports a ReferenceError:

consolelog.png

I am not sure where to go from here to get this working.

Thanks for any help you can give.

Tony

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In

Best Answer

  • Member
    Answer ✓

    Just wanted to post back here that my issue has been resolved.

    Apparently, I had everything setup correctly but I was not importing domo correctly into the app. I had the import set as import { domo } from 'ryuu.js'; , which was failing to recognize it. I didn't know that domo was exported as default so it should have been import domo from 'ryuu.js'; (without the curly braces). Once I included that import correctly, the connection to domo worked.

    Thanks for the responses.

    Tony

Answers

  • After creating the template, did you run npm install to install all the necessary dependencies contained in the package.json file?

    Was this comment helpful? Click Agree or Like below.
    Did this comment solve your problem? Accept it as the solution!

  • Hi @brycec , when I ran the initial command to create-react-app, i thought I did since other packages were working, however, I ran it again, just in case:

    npm-install.png

    but I am still getting the same error:

    still-errors.png
  • Member
    Answer ✓

    Just wanted to post back here that my issue has been resolved.

    Apparently, I had everything setup correctly but I was not importing domo correctly into the app. I had the import set as import { domo } from 'ryuu.js'; , which was failing to recognize it. I didn't know that domo was exported as default so it should have been import domo from 'ryuu.js'; (without the curly braces). Once I included that import correctly, the connection to domo worked.

    Thanks for the responses.

    Tony

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In