UNPKG

3.72 kBJavaScriptView Raw
1// @remove-on-eject-begin
2/**
3 * Copyright (c) 2015-present, Facebook, Inc.
4 *
5 * This source code is licensed under the MIT license found in the
6 * LICENSE file in the root directory of this source tree.
7 */
8// @remove-on-eject-end
9'use strict';
10
11const fs = require('fs');
12const path = require('path');
13const paths = require('./paths');
14
15// Make sure that including paths.js after env.js will read .env variables.
16delete require.cache[require.resolve('./paths')];
17
18const NODE_ENV = process.env.NODE_ENV;
19if (!NODE_ENV) {
20 throw new Error(
21 'The NODE_ENV environment variable is required but was not specified.'
22 );
23}
24
25// https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use
26const dotenvFiles = [
27 `${paths.dotenv}.${NODE_ENV}.local`,
28 `${paths.dotenv}.${NODE_ENV}`,
29 // Don't include `.env.local` for `test` environment
30 // since normally you expect tests to produce the same
31 // results for everyone
32 NODE_ENV !== 'test' && `${paths.dotenv}.local`,
33 paths.dotenv,
34].filter(Boolean);
35
36// Load environment variables from .env* files. Suppress warnings using silent
37// if this file is missing. dotenv will never modify any environment variables
38// that have already been set. Variable expansion is supported in .env files.
39// https://github.com/motdotla/dotenv
40// https://github.com/motdotla/dotenv-expand
41dotenvFiles.forEach(dotenvFile => {
42 if (fs.existsSync(dotenvFile)) {
43 require('dotenv-expand')(
44 require('dotenv').config({
45 path: dotenvFile,
46 })
47 );
48 }
49});
50
51// We support resolving modules according to `NODE_PATH`.
52// This lets you use absolute paths in imports inside large monorepos:
53// https://github.com/facebook/create-react-app/issues/253.
54// It works similar to `NODE_PATH` in Node itself:
55// https://nodejs.org/api/modules.html#modules_loading_from_the_global_folders
56// Note that unlike in Node, only *relative* paths from `NODE_PATH` are honored.
57// Otherwise, we risk importing Node.js core modules into an app instead of Webpack shims.
58// https://github.com/facebook/create-react-app/issues/1023#issuecomment-265344421
59// We also resolve them to make sure all tools using them work consistently.
60const appDirectory = fs.realpathSync(process.cwd());
61process.env.NODE_PATH = (process.env.NODE_PATH || '')
62 .split(path.delimiter)
63 .filter(folder => folder && !path.isAbsolute(folder))
64 .map(folder => path.resolve(appDirectory, folder))
65 .join(path.delimiter);
66
67// Grab NODE_ENV and REACT_APP_* environment variables and prepare them to be
68// injected into the application via DefinePlugin in Webpack configuration.
69const REACT_APP = /^REACT_APP_/i;
70
71function getClientEnvironment(publicUrl) {
72 const raw = Object.keys(process.env)
73 .filter(key => REACT_APP.test(key))
74 .reduce(
75 (env, key) => {
76 env[key] = process.env[key];
77 return env;
78 },
79 {
80 // Useful for determining whether we’re running in production mode.
81 // Most importantly, it switches React into the correct mode.
82 NODE_ENV: process.env.NODE_ENV || 'development',
83 // Useful for resolving the correct path to static assets in `public`.
84 // For example, <img src={process.env.PUBLIC_URL + '/img/logo.png'} />.
85 // This should only be used as an escape hatch. Normally you would put
86 // images into the `src` and `import` them in code to get their paths.
87 PUBLIC_URL: publicUrl,
88 }
89 );
90 // Stringify all values so we can feed into Webpack DefinePlugin
91 const stringified = {
92 'process.env': Object.keys(raw).reduce((env, key) => {
93 env[key] = JSON.stringify(raw[key]);
94 return env;
95 }, {}),
96 };
97
98 return { raw, stringified };
99}
100
101module.exports = getClientEnvironment;