start.js 3.81 KB
Newer Older
1
// @remove-on-eject-begin
Christopher Chedeau's avatar
Christopher Chedeau committed
2
3
4
5
6
7
8
9
/**
 * Copyright (c) 2015-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
10
// @remove-on-eject-end
Christopher Chedeau's avatar
Christopher Chedeau committed
11

12
13
process.env.NODE_ENV = 'development';

Brian Ng's avatar
Brian Ng committed
14
// Load environment variables from .env file. Suppress warnings using silent
15
16
17
18
19
// if this file is missing. dotenv will never modify any environment variables
// that have already been set.
// https://github.com/motdotla/dotenv
require('dotenv').config({silent: true});

Daniel Grant's avatar
Daniel Grant committed
20
var fs = require('fs');
21
var chalk = require('chalk');
22
var detect = require('detect-port');
Daniel Grant's avatar
Daniel Grant committed
23
var WebpackDevServer = require('webpack-dev-server');
24
25
var clearConsole = require('react-dev-utils/clearConsole');
var checkRequiredFiles = require('react-dev-utils/checkRequiredFiles');
26
var getProcessForPort = require('react-dev-utils/getProcessForPort');
27
28
var openBrowser = require('react-dev-utils/openBrowser');
var prompt = require('react-dev-utils/prompt');
29
var paths = require('../config/paths');
Daniel Grant's avatar
Daniel Grant committed
30
31
32
33
var config = require('../config/webpack.config.dev');
var devServerConfig = require('../config/webpackDevServer.config');
var createWebpackCompiler = require('./utils/createWebpackCompiler');
var addWebpackMiddleware = require('./utils/addWebpackMiddleware');
34

35
var useYarn = fs.existsSync(paths.yarnLockFile);
Ville Immonen's avatar
Ville Immonen committed
36
var cli = useYarn ? 'yarn' : 'npm';
37
var isInteractive = process.stdout.isTTY;
Ville Immonen's avatar
Ville Immonen committed
38

39
40
41
42
43
// Warn and crash if required files are missing
if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
  process.exit(1);
}

44
// Tools like Cloud9 rely on this.
45
var DEFAULT_PORT = parseInt(process.env.PORT, 10) || 3000;
46

Daniel Grant's avatar
Daniel Grant committed
47
48
49
function run(port) {
  var protocol = process.env.HTTPS === 'true' ? 'https' : 'http';
  var host = process.env.HOST || 'localhost';
50

Daniel Grant's avatar
Daniel Grant committed
51
52
53
  // Create a webpack compiler that is configured with custom messages.
  var compiler = createWebpackCompiler(config, function onReady(showInstructions) {
    if (!showInstructions) {
54
55
      return;
    }
56
    console.log();
Daniel Grant's avatar
Daniel Grant committed
57
58
59
60
61
62
63
    console.log('The app is running at:');
    console.log();
    console.log('  ' + chalk.cyan(protocol + '://' + host + ':' + port + '/'));
    console.log();
    console.log('Note that the development build is not optimized.');
    console.log('To create a production build, use ' + chalk.cyan(cli + ' run build') + '.');
    console.log();
64
  });
65

Daniel Grant's avatar
Daniel Grant committed
66
67
68
  // Serve webpack assets generated by the compiler over a web sever.
  var devServer = new WebpackDevServer(compiler, devServerConfig);

69
  // Our custom middleware proxies requests to /index.html or a remote API.
Daniel Grant's avatar
Daniel Grant committed
70
  addWebpackMiddleware(devServer);
71
72

  // Launch WebpackDevServer.
73
  devServer.listen(port, (err, result) => {
74
75
76
77
    if (err) {
      return console.log(err);
    }

78
79
80
    if (isInteractive) {
      clearConsole();
    }
81
82
    console.log(chalk.cyan('Starting the development server...'));
    console.log();
83

84
    openBrowser(protocol + '://' + host + ':' + port + '/');
85
  });
86
87
}

88
89
// We attempt to use the default port but if it is busy, we offer the user to
// run on a different port. `detect()` Promise resolves to the next free port.
90
91
92
93
detect(DEFAULT_PORT).then(port => {
  if (port === DEFAULT_PORT) {
    run(port);
    return;
Dan Abramov's avatar
Dan Abramov committed
94
  }
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
95

96
97
98
99
100
101
102
  if (isInteractive) {
    clearConsole();
    var existingProcess = getProcessForPort(DEFAULT_PORT);
    var question =
      chalk.yellow('Something is already running on port ' + DEFAULT_PORT + '.' +
        ((existingProcess) ? ' Probably:\n  ' + existingProcess : '')) +
        '\n\nWould you like to run the app on another port instead?';
103

104
105
106
107
108
109
110
111
    prompt(question, true).then(shouldChangePort => {
      if (shouldChangePort) {
        run(port);
      }
    });
  } else {
    console.log(chalk.red('Something is already running on port ' + DEFAULT_PORT + '.'));
  }
Dan Abramov's avatar
Dan Abramov committed
112
});