解决这个问题的NPM命令应该是什么?

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

我针对这个问题尝试了各种解决方案,但无法通过 4 个测试用例中的 2 个。请帮助我解决这个问题

通过在 maxbot 目录中创建名为 npm_commandspackage.json 文件来执行以下提到的步骤

  1. 创建一个名为 index.js.
  2. 的文件
  3. index.js 文件中编写 js 代码,创建一个名为 myVar 的字符串,值为 node 包管理器 并将其转换为大写。

注意:请使用console.log在index.js文件中显示myVar的输出

  1. package.json 中配置 scripts (a) 使用
    npm run release | tee output1.txt
    检查 npm 和 node 的版本 (b) 使用
    npm run build | tee output.txt
  2. 执行index.js
npm command package.json
3个回答
4
投票
  1. npm init - 初始化新包
  • 将 npm_commands 作为包名称
  • 将index.js作为启动文件
  1. 创建名为index.js的新文件
  • 声明:let myVar =“节点包管理器”
  • 以大写形式打印 var:console.log(myVar.toUpperCase());
  1. 在 package.json 中添加这些脚本
  • 检查 npm 和节点版本: "release": "npm -v && node -v",
  • 执行index.js文件: "build": "node index.js"
  1. 保存并运行以下命令以获得结果:
  • npm 运行发布 |三通输出1.txt
  • npm 运行构建 |三通输出.txt

0
投票

第1步:运行命令来初始化新包

npm 初始化

第 2 步: 命令将启动包初始化过程

  • 设置包名:

包名称:(挑战)npm_commands

第三步: 按回车键直到询问“入口点”,默认设置为index.js验证并按回车键。直到初始化过程结束。

第4步:转到编辑器项目资源管理器添加创建新文件index.js,并在其中添加以下代码。

let myVar = 'node package manager';
console.log(myVar.toUpperCase());

第 5 步: 将以下行添加到 package.json 文件的脚本块中

"release" : "npm -v && node -v",
"build" : "node index.js",

添加上述行后,脚本块如下所示

"scripts": {
    "release" : "npm -v && node -v",
    "build" : "node index.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },

第 6 步: 现在打开命令提示符并运行以下命令

npm run release | tee output1.txt
npm run build | tee output.txt

上述命令在项目资源管理器中创建包含相应命令输出的output1.txt和output.txt文件。

第7步:就是这样!现在运行测试并检查您的 FS_SCORE 是否为 100% 并提交测试。


0
投票

未得到100%请检查并回答

© www.soinside.com 2019 - 2024. All rights reserved.