无法将参数传递给“ npm start”来配置React Pre Hook

问题描述 投票:0回答:1

我有一个使用以下项目创建的全新项目:

$ npx create-react-app test-react-app && cd test-react-app && npm start

这里是仓库:https://github.com/tlg-265/test-react-app

我创建了一个新脚本:/prepare-project.js,具有以下内容:

let project = 'ferrari' // replace this value with the one passed via: $ npm start [what to put here?]

console.log(`########################`);
console.log(`###### The current project is: ${project} ######`);
console.log(`########################`);

文件内容:/package.json为:

{
  "name": "test-react-app",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@testing-library/jest-dom": "^4.2.4",
    "@testing-library/react": "^9.3.2",
    "@testing-library/user-event": "^7.1.2",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "react-scripts": "3.3.1"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "prestart": "node prepare-project.js"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
}

在哪里可以看到我配置了pre hook

"prestart": "node prepare-project.js"

我的目标是跑步:

$ npm start [what to put here?]

因此在脚本中:/prepare-project.js我可以读取该值。

我尝试过:

$ node prepare-project.js --project=mclaren

[尝试从脚本内部读取该值时没有运气:prepare-project.js

关于实现此目标的任何想法?

谢谢!

javascript node.js reactjs package.json npx
1个回答
0
投票

您可以使用yargs模块来解析命令行参数,然后可以使用child_process执行命令。这是您的代码的外观,您可以添加自己的自定义逻辑。

const yargs = require('yargs');
const { execSync } = require('child_process');

const argv = yargs
    .option('project', {
        alias: 'p',
        description: 'name of the project',
        type: 'string',
    })
    .help()
    .alias('help', 'h')
    .argv;

console.log(argv.project);
console.log(`npm start --project=${argv.project}`);
const output = execSync(`npm start --project=${argv.project}`);
console.log(output)
© www.soinside.com 2019 - 2024. All rights reserved.