重构xuchang-screen,从umi->cra, 计划引入redux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

155 regels
4.6 KiB

  1. 'use strict';
  2. // Do this as the first thing so that any code reading it knows the right env.
  3. process.env.BABEL_ENV = 'development';
  4. process.env.NODE_ENV = 'development';
  5. // Makes the script crash on unhandled rejections instead of silently
  6. // ignoring them. In the future, promise rejections that are not handled will
  7. // terminate the Node.js process with a non-zero exit code.
  8. process.on('unhandledRejection', err => {
  9. throw err;
  10. });
  11. // Ensure environment variables are read.
  12. require('../config/env');
  13. const fs = require('fs');
  14. const chalk = require('react-dev-utils/chalk');
  15. const webpack = require('webpack');
  16. const WebpackDevServer = require('webpack-dev-server');
  17. const clearConsole = require('react-dev-utils/clearConsole');
  18. const checkRequiredFiles = require('react-dev-utils/checkRequiredFiles');
  19. const {
  20. choosePort,
  21. createCompiler,
  22. prepareProxy,
  23. prepareUrls,
  24. } = require('react-dev-utils/WebpackDevServerUtils');
  25. const openBrowser = require('react-dev-utils/openBrowser');
  26. const semver = require('semver');
  27. const paths = require('../config/paths');
  28. const configFactory = require('../config/webpack.config');
  29. const createDevServerConfig = require('../config/webpackDevServer.config');
  30. const getClientEnvironment = require('../config/env');
  31. const react = require(require.resolve('react', { paths: [paths.appPath] }));
  32. const env = getClientEnvironment(paths.publicUrlOrPath.slice(0, -1));
  33. const useYarn = fs.existsSync(paths.yarnLockFile);
  34. const isInteractive = process.stdout.isTTY;
  35. // Warn and crash if required files are missing
  36. if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
  37. process.exit(1);
  38. }
  39. // Tools like Cloud9 rely on this.
  40. const DEFAULT_PORT = parseInt(process.env.PORT, 10) || 3000;
  41. const HOST = process.env.HOST || '0.0.0.0';
  42. if (process.env.HOST) {
  43. console.log(
  44. chalk.cyan(
  45. `Attempting to bind to HOST environment variable: ${chalk.yellow(
  46. chalk.bold(process.env.HOST)
  47. )}`
  48. )
  49. );
  50. console.log(
  51. `If this was unintentional, check that you haven't mistakenly set it in your shell.`
  52. );
  53. console.log(
  54. `Learn more here: ${chalk.yellow('https://cra.link/advanced-config')}`
  55. );
  56. console.log();
  57. }
  58. // We require that you explicitly set browsers and do not fall back to
  59. // browserslist defaults.
  60. const { checkBrowsers } = require('react-dev-utils/browsersHelper');
  61. checkBrowsers(paths.appPath, isInteractive)
  62. .then(() => {
  63. // We attempt to use the default port but if it is busy, we offer the user to
  64. // run on a different port. `choosePort()` Promise resolves to the next free port.
  65. return choosePort(HOST, DEFAULT_PORT);
  66. })
  67. .then(port => {
  68. if (port == null) {
  69. // We have not found a port.
  70. return;
  71. }
  72. const config = configFactory('development');
  73. const protocol = process.env.HTTPS === 'true' ? 'https' : 'http';
  74. const appName = require(paths.appPackageJson).name;
  75. const useTypeScript = fs.existsSync(paths.appTsConfig);
  76. const urls = prepareUrls(
  77. protocol,
  78. HOST,
  79. port,
  80. paths.publicUrlOrPath.slice(0, -1)
  81. );
  82. // Create a webpack compiler that is configured with custom messages.
  83. const compiler = createCompiler({
  84. appName,
  85. config,
  86. urls,
  87. useYarn,
  88. useTypeScript,
  89. webpack,
  90. });
  91. // Load proxy config
  92. const proxySetting = require(paths.appPackageJson).proxy;
  93. const proxyConfig = prepareProxy(
  94. proxySetting,
  95. paths.appPublic,
  96. paths.publicUrlOrPath
  97. );
  98. // Serve webpack assets generated by the compiler over a web server.
  99. const serverConfig = {
  100. ...createDevServerConfig(proxyConfig, urls.lanUrlForConfig),
  101. host: HOST,
  102. port,
  103. };
  104. const devServer = new WebpackDevServer(serverConfig, compiler);
  105. // Launch WebpackDevServer.
  106. devServer.startCallback(() => {
  107. if (isInteractive) {
  108. clearConsole();
  109. }
  110. if (env.raw.FAST_REFRESH && semver.lt(react.version, '16.10.0')) {
  111. console.log(
  112. chalk.yellow(
  113. `Fast Refresh requires React 16.10 or higher. You are using React ${react.version}.`
  114. )
  115. );
  116. }
  117. console.log(chalk.cyan('Starting the development server...\n'));
  118. openBrowser(urls.localUrlForBrowser);
  119. });
  120. ['SIGINT', 'SIGTERM'].forEach(function (sig) {
  121. process.on(sig, function () {
  122. devServer.close();
  123. process.exit();
  124. });
  125. });
  126. if (process.env.CI !== 'true') {
  127. // Gracefully exit when stdin ends
  128. process.stdin.on('end', function () {
  129. devServer.close();
  130. process.exit();
  131. });
  132. }
  133. })
  134. .catch(err => {
  135. if (err && err.message) {
  136. console.log(err.message);
  137. }
  138. process.exit(1);
  139. });