如何在package.json中运行nodejs项目

bq3bfh9z  于 2023-01-12  发布在  Node.js
关注(0)|答案(4)|浏览(231)

我正在开发Nodejs,现在我正在尝试运行nodejs项目(已存在),我该怎么做?这是我的package.json

"scripts": {
    "test": "jest",
    "build": "tsc",
    "lint": "eslint . --ext .ts,.js,.md -c .eslintrc.json --fix",
    "prepublishOnly": "npm run build",
    "dev": "next dev",
  },

我尝试了以下代码,但不工作,我怎么能做到这一点?

npm jest
czq61nw1

czq61nw11#

先把这里清理干净

"scripts": {
    "test": "jest",
    "build": "tsc",
    "lint": "eslint . --ext .ts,.js,.md -c .eslintrc.json --fix",
    "prepublishOnly": "npm run build",
    "dev": "next dev" // notice i removed the trailing comma here
  },

设置后,运行命令
开始项目的步骤

npm run dev

要运行测试

npm run test

基本上就是npm run [script]

wfsdck30

wfsdck302#

要运行项目:

npm run dev

要运行单元测试:

npm run test
uqdfh47h

uqdfh47h3#

您可以在终端中使用npm run [script]命令运行脚本。在您的情况下,请运行npm run test

k75qkfdt

k75qkfdt4#

您可以运行任何脚本。它必须在package.json文件中定义。例如,按如下所示定义您的package.json:

"scripts" :{
     "start": "node index.js",
      "test" : "mocha test/**.spec.ts"
}
Once it's defined you can run
npm run start -> to start up your server
npm run test -> to run unit test using mocha(just an example)

相关问题