UNPKG

env-create-react-app

Version:

create-react-app import environment variables helper without REACT_APP prefix helper.

28 lines (22 loc) 645 B
# env-create-react-app [![Build Status](https://travis-ci.com/AlexanderCollins/env-create-react-app.svg?branch=master)](https://travis-ci.com/AlexanderCollins/env-create-react-app) For those using **create-react-app** wishing to refrence their .env file variables without the REACT_APP prefix. ## Usage ### .env file ~~~~ REACT_APP_MY_ENVIRONMENT_VARIABLE_A=foo REACT_APP_MY_ENVIRONMENT_VARIABLE_B=bar ~~~~ ### Example ~~~~ import { MY_ENVIRONMENT_VARIABLE_A, MY_ENVIRONMENT_VARIABLE_B } from 'env-create-react-app'; console.log(MY_ENVIRONMENT_VARIABLE_A); console.log(MY_ENVIRONMENT_VARIABLE_B); ~~~~ ### Output ~~~~ foo bar ~~~~