Skip to content

_ref not defined in Create react app. #41

Description

@razzpoker50

We are planning to use greenlet to defer expensive computations to web worker in CRA project ( along with Type script ). To test it out I was playing around with a small example.

greenlet-helpers.ts

import greenlet from 'greenlet';

export const greenletRead = greenlet(async msg => {
  return msg;
});

utils.ts

import { greenletRead } from './greenlet-helpers';

try {
    const resp = await greenletRead('Hey from greenlet');
    console.log(resp);
} catch (e) {
     console.log('Exception', e);
 }

Running into _ref is not defined when ever this gets invoked. It would be great if I can get any pointers to get this started.

P.S. I also tried moving the code snippet from greenlet-helpers to uitils and still running into the same issue.

utils.ts

import greenlet from 'greenlet';

try {
   const greenletRead = greenlet(async msg => {
       return msg;
    });

    const resp = await greenletRead('Hey from greenlet');
    console.log(resp);
} catch (e) {
     console.log('Exception', e);
 }

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    has fixquestionFurther information is requested

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions