UNPKG

next

Version:

The React Framework

1 lines • 21.8 kB
{"version":3,"sources":["../../src/bin/next.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport '../server/require-hook'\n\nimport {\n Argument,\n Command,\n InvalidArgumentError,\n Option,\n} from 'next/dist/compiled/commander'\n\nimport { warn } from '../build/output/log'\nimport semver from 'next/dist/compiled/semver'\nimport { bold, cyan, italic } from '../lib/picocolors'\nimport { formatCliHelpOutput } from '../lib/format-cli-help-output'\nimport { NON_STANDARD_NODE_ENV } from '../lib/constants'\nimport {\n getParsedDebugAddress,\n parseValidPositiveInteger,\n type DebugAddress,\n} from '../server/lib/utils'\nimport {\n SUPPORTED_TEST_RUNNERS_LIST,\n type NextTestOptions,\n} from '../cli/next-test.js'\nimport type { NextTelemetryOptions } from '../cli/next-telemetry.js'\nimport type { NextStartOptions } from '../cli/next-start.js'\nimport type { NextInfoOptions } from '../cli/next-info.js'\nimport type { NextDevOptions } from '../cli/next-dev.js'\nimport type { NextBuildOptions } from '../cli/next-build.js'\nimport type { NextTypegenOptions } from '../cli/next-typegen.js'\n\nif (process.env.NEXT_RSPACK) {\n // silent rspack's schema check\n process.env.RSPACK_CONFIG_VALIDATE = 'loose-silent'\n}\n\nif (\n !semver.satisfies(\n process.versions.node,\n process.env.__NEXT_REQUIRED_NODE_VERSION_RANGE!,\n { includePrerelease: true }\n )\n) {\n console.error(\n `You are using Node.js ${process.versions.node}. For Next.js, Node.js version \"${process.env.__NEXT_REQUIRED_NODE_VERSION_RANGE}\" is required.`\n )\n process.exit(1)\n}\n\n// Start performance profiling after Node.js version is checked\nperformance.mark('next-start')\n\nfor (const dependency of ['react', 'react-dom']) {\n try {\n // When 'npm link' is used it checks the clone location. Not the project.\n require.resolve(dependency)\n } catch (err) {\n console.warn(\n `The module '${dependency}' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install ${dependency}'`\n )\n }\n}\n\nclass NextRootCommand extends Command {\n createCommand(name: string) {\n const command = new Command(name)\n\n command.hook('preAction', (event) => {\n const commandName = event.name()\n const defaultEnv = commandName === 'dev' ? 'development' : 'production'\n const standardEnv = ['production', 'development', 'test']\n\n if (process.env.NODE_ENV) {\n const isNotStandard = !standardEnv.includes(process.env.NODE_ENV)\n const shouldWarnCommands =\n process.env.NODE_ENV === 'development'\n ? ['start', 'build']\n : process.env.NODE_ENV === 'production'\n ? ['dev']\n : []\n\n if (isNotStandard || shouldWarnCommands.includes(commandName)) {\n warn(NON_STANDARD_NODE_ENV)\n }\n }\n\n ;(process.env as any).NODE_ENV = process.env.NODE_ENV || defaultEnv\n ;(process.env as any).NEXT_RUNTIME = 'nodejs'\n\n if (commandName !== 'dev' && event.getOptionValue('inspect') === true) {\n console.error(\n `\\`--inspect\\` flag is deprecated. Use env variable NODE_OPTIONS instead: NODE_OPTIONS='--inspect' next ${commandName}`\n )\n process.exit(1)\n }\n })\n\n return command\n }\n}\n\nfunction parseValidInspectAddress(value: string): DebugAddress {\n const address = getParsedDebugAddress(value)\n\n if (Number.isNaN(address.port)) {\n throw new InvalidArgumentError(\n 'The given value is not a valid inspect address. ' +\n 'Did you mean to pass an app path?\\n' +\n `Try switching the order of the arguments or set the default address explicitly e.g.\\n` +\n `next dev ${value} --inspect\\n` +\n `next dev --inspect= ${value}`\n )\n }\n\n return address\n}\n\nconst program = new NextRootCommand()\n\nprogram\n .name('next')\n .description(\n 'The Next.js CLI allows you to develop, build, start your application, and more.'\n )\n .configureHelp({\n formatHelp: (cmd, helper) => formatCliHelpOutput(cmd, helper),\n subcommandTerm: (cmd) => `${cmd.name()} ${cmd.usage()}`,\n })\n .helpCommand(false)\n .helpOption('-h, --help', 'Displays this message.')\n .version(\n `Next.js v${process.env.__NEXT_VERSION}`,\n '-v, --version',\n 'Outputs the Next.js version.'\n )\n\nprogram\n .command('build')\n .description(\n 'Creates an optimized production build of your application. The output displays information about each route.'\n )\n .argument(\n '[directory]',\n `A directory on which to build the application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .option(\n '--experimental-analyze',\n 'Analyze bundle output. Only compatible with Turbopack.'\n )\n .option('-d, --debug', 'Enables a more verbose build output.')\n .option(\n '--debug-prerender',\n 'Enables debug mode for prerendering. Not for production use!'\n )\n .option('--no-mangling', 'Disables mangling.')\n .option('--profile', 'Enables production profiling for React.')\n .option('--experimental-app-only', 'Builds only App Router routes.')\n .option('--turbo', 'Builds using Turbopack.')\n .option('--turbopack', 'Builds using Turbopack.')\n .option('--webpack', 'Builds using webpack.')\n .addOption(\n new Option(\n '--experimental-build-mode [mode]',\n 'Uses an experimental build mode.'\n )\n .choices(['compile', 'generate', 'generate-env'])\n .default('default')\n )\n .option(\n '--experimental-debug-memory-usage',\n 'Enables memory profiling features to debug memory consumption.'\n )\n .option(\n '--experimental-upload-trace, <traceUrl>',\n 'Reports a subset of the debugging trace to a remote HTTP URL. Includes sensitive data.'\n )\n .option(\n '--experimental-next-config-strip-types',\n 'Use Node.js native TypeScript resolution for next.config.(ts|mts)'\n )\n .option(\n '--debug-build-paths <patterns>',\n 'Comma-separated glob patterns or explicit paths for selective builds. Examples: \"app/*\", \"app/page.tsx\", \"app/**/page.tsx\"'\n )\n .action((directory: string, options: NextBuildOptions) => {\n if (options.experimentalNextConfigStripTypes) {\n process.env.__NEXT_NODE_NATIVE_TS_LOADER_ENABLED = 'true'\n }\n\n // ensure process exits after build completes so open handles/connections\n // don't cause process to hang\n return import('../cli/next-build.js').then((mod) =>\n mod.nextBuild(options, directory).then(() => process.exit(0))\n )\n })\n .usage('[directory] [options]')\n\nprogram\n .command('dev', { isDefault: true })\n .description(\n 'Starts Next.js in development mode with hot-code reloading, error reporting, and more.'\n )\n .argument(\n '[directory]',\n `A directory on which to build the application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .addOption(\n new Option(\n '--inspect [[host:]port]',\n 'Allows inspecting server-side code. See https://nextjs.org/docs/app/guides/debugging#server-side-code'\n ).argParser(parseValidInspectAddress)\n )\n .option('--turbo', 'Starts development mode using Turbopack.')\n .option('--turbopack', 'Starts development mode using Turbopack.')\n .option('--webpack', 'Starts development mode using webpack.')\n .addOption(\n new Option(\n '-p, --port <port>',\n 'Specify a port number on which to start the application.'\n )\n .argParser(parseValidPositiveInteger)\n .default(3000)\n .env('PORT')\n )\n .option(\n '-H, --hostname <hostname>',\n 'Specify a hostname on which to start the application (default: 0.0.0.0).'\n )\n .option(\n '--disable-source-maps',\n \"Don't start the Dev server with `--enable-source-maps`.\",\n false\n )\n .option(\n '--experimental-https',\n 'Starts the server with HTTPS and generates a self-signed certificate.'\n )\n .option('--experimental-https-key, <path>', 'Path to a HTTPS key file.')\n .option(\n '--experimental-https-cert, <path>',\n 'Path to a HTTPS certificate file.'\n )\n .option(\n '--experimental-https-ca, <path>',\n 'Path to a HTTPS certificate authority file.'\n )\n .option(\n '--experimental-upload-trace, <traceUrl>',\n 'Reports a subset of the debugging trace to a remote HTTP URL. Includes sensitive data.'\n )\n .option(\n '--experimental-next-config-strip-types',\n 'Use Node.js native TypeScript resolution for next.config.(ts|mts)'\n )\n .action(\n (directory: string, options: NextDevOptions, { _optionValueSources }) => {\n if (options.experimentalNextConfigStripTypes) {\n process.env.__NEXT_NODE_NATIVE_TS_LOADER_ENABLED = 'true'\n }\n const portSource = _optionValueSources.port\n import('../cli/next-dev.js').then((mod) =>\n mod.nextDev(options, portSource, directory)\n )\n }\n )\n .usage('[directory] [options]')\n\nprogram\n .command('export', { hidden: true })\n .action(() => import('../cli/next-export.js').then((mod) => mod.nextExport()))\n .helpOption(false)\n\nprogram\n .command('info')\n .description(\n 'Prints relevant details about the current system which can be used to report Next.js bugs.'\n )\n .addHelpText(\n 'after',\n `\\nLearn more: ${cyan('https://nextjs.org/docs/api-reference/cli#info')}`\n )\n .option('--verbose', 'Collects additional information for debugging.')\n .action((options: NextInfoOptions) =>\n import('../cli/next-info.js').then((mod) => mod.nextInfo(options))\n )\n\nprogram\n .command('start')\n .description(\n 'Starts Next.js in production mode. The application should be compiled with `next build` first.'\n )\n .argument(\n '[directory]',\n `A directory on which to start the application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .addOption(\n new Option(\n '-p, --port <port>',\n 'Specify a port number on which to start the application.'\n )\n .argParser(parseValidPositiveInteger)\n .default(3000)\n .env('PORT')\n )\n .option(\n '-H, --hostname <hostname>',\n 'Specify a hostname on which to start the application (default: 0.0.0.0).'\n )\n .addOption(\n new Option(\n '--keepAliveTimeout <keepAliveTimeout>',\n 'Specify the maximum amount of milliseconds to wait before closing inactive connections.'\n ).argParser(parseValidPositiveInteger)\n )\n .option(\n '--experimental-next-config-strip-types',\n 'Use Node.js native TypeScript resolution for next.config.(ts|mts)'\n )\n .action((directory: string, options: NextStartOptions) => {\n if (options.experimentalNextConfigStripTypes) {\n process.env.__NEXT_NODE_NATIVE_TS_LOADER_ENABLED = 'true'\n }\n return import('../cli/next-start.js').then((mod) =>\n mod.nextStart(options, directory)\n )\n })\n .usage('[directory] [options]')\n\nprogram\n .command('telemetry')\n .description(\n `Allows you to enable or disable Next.js' ${bold(\n 'completely anonymous'\n )} telemetry collection.`\n )\n .addArgument(new Argument('[arg]').choices(['disable', 'enable', 'status']))\n .addHelpText('after', `\\nLearn more: ${cyan('https://nextjs.org/telemetry')}`)\n .addOption(\n new Option('--enable', `Enables Next.js' telemetry collection.`).conflicts(\n 'disable'\n )\n )\n .option('--disable', `Disables Next.js' telemetry collection.`)\n .action((arg: string, options: NextTelemetryOptions) =>\n import('../cli/next-telemetry.js').then((mod) =>\n mod.nextTelemetry(options, arg)\n )\n )\n\nprogram\n .command('typegen')\n .description(\n 'Generate TypeScript definitions for routes, pages, and layouts without running a full build.'\n )\n .argument(\n '[directory]',\n `A directory on which to generate types. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .action((directory: string, options: NextTypegenOptions) =>\n // ensure process exits after typegen completes so open handles/connections\n // don't cause process to hang\n import('../cli/next-typegen.js').then((mod) =>\n mod.nextTypegen(options, directory).then(() => process.exit(0))\n )\n )\n .usage('[directory] [options]')\n\nprogram\n .command('experimental-test')\n .description(\n `Execute \\`next/experimental/testmode\\` tests using a specified test runner. The test runner defaults to 'playwright' if the \\`experimental.defaultTestRunner\\` configuration option or the \\`--test-runner\\` option are not set.`\n )\n .argument(\n '[directory]',\n `A Next.js project directory to execute the test runner on. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .argument(\n '[test-runner-args...]',\n 'Any additional arguments or options to pass down to the test runner `test` command.'\n )\n .option(\n '--test-runner [test-runner]',\n `Any supported test runner. Options: ${bold(\n SUPPORTED_TEST_RUNNERS_LIST.join(', ')\n )}. ${italic(\n \"If no test runner is provided, the Next.js config option `experimental.defaultTestRunner`, or 'playwright' will be used.\"\n )}`\n )\n .allowUnknownOption()\n .action(\n (directory: string, testRunnerArgs: string[], options: NextTestOptions) => {\n return import('../cli/next-test.js').then((mod) => {\n mod.nextTest(directory, testRunnerArgs, options)\n })\n }\n )\n .usage('[directory] [options]')\n\nconst internal = program\n .command('internal')\n .description(\n 'Internal debugging commands. Use with caution. Not covered by semver.'\n )\n\ninternal\n .command('trace')\n .alias('turbo-trace-server')\n .argument('file', 'Trace file to serve.')\n .addOption(\n new Option('-p, --port <port>', 'Override the port.').argParser(\n parseValidPositiveInteger\n )\n )\n .action((file: string, options: { port: number | undefined }) => {\n return import('../cli/internal/turbo-trace-server.js').then((mod) =>\n mod.startTurboTraceServerCli(file, options.port)\n )\n })\n\nprogram.parse(process.argv)\n"],"names":["process","env","NEXT_RSPACK","RSPACK_CONFIG_VALIDATE","semver","satisfies","versions","node","__NEXT_REQUIRED_NODE_VERSION_RANGE","includePrerelease","console","error","exit","performance","mark","dependency","require","resolve","err","warn","NextRootCommand","Command","createCommand","name","command","hook","event","commandName","defaultEnv","standardEnv","NODE_ENV","isNotStandard","includes","shouldWarnCommands","NON_STANDARD_NODE_ENV","NEXT_RUNTIME","getOptionValue","parseValidInspectAddress","value","address","getParsedDebugAddress","Number","isNaN","port","InvalidArgumentError","program","description","configureHelp","formatHelp","cmd","helper","formatCliHelpOutput","subcommandTerm","usage","helpCommand","helpOption","version","__NEXT_VERSION","argument","italic","option","addOption","Option","choices","default","action","directory","options","experimentalNextConfigStripTypes","__NEXT_NODE_NATIVE_TS_LOADER_ENABLED","then","mod","nextBuild","isDefault","argParser","parseValidPositiveInteger","_optionValueSources","portSource","nextDev","hidden","nextExport","addHelpText","cyan","nextInfo","nextStart","bold","addArgument","Argument","conflicts","arg","nextTelemetry","nextTypegen","SUPPORTED_TEST_RUNNERS_LIST","join","allowUnknownOption","testRunnerArgs","nextTest","internal","alias","file","startTurboTraceServerCli","parse","argv"],"mappings":"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","ignoreList":[0]}