How to use the funtch.get function in funtch

To help you get started, we’ve selected a few funtch examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ViBiOh / dashboard / src / Constants.js View on Github external
};

      resolve(context);
    } else if (process.env.NODE_ENV === 'staging') {
      context = {
        API_URL: 'https://dashboard-api.vibioh.fr',
        AUTH_URL: 'https://dashboard-auth.vibioh.fr',
        BASIC_AUTH_ENABLED: 'false',
        ENVIRONMENT: 'dev',
        GITHUB_AUTH_ENABLED: 'true',
        WS_URL: 'wss://dashboard-api.vibioh.fr/ws',
      };

      resolve(context);
    } else {
      funtch.get('/env').then(env => {
        context = env;
        resolve(context);
      });
    }
  });
}

funtch

FUNctional feTCH isomorphic

MIT
Latest version published 3 years ago

Package Health Score

45 / 100
Full package analysis