可以为节点应用程序安装所有缺少的模块吗?

时间:2012-11-02 04:17:40

标签: node.js npm

我有一个我刚刚开始使用的节点应用程序,每次我尝试运行它时,都说有一个缺少的模块。我刚刚为每个模块使用npm install ...但是在完成了大约10个模块之后,我想知道是否有办法让npm为节点应用程序下拉所有需要的模块而不用我手动安装每个模块。可以吗?

5 个答案:

答案 0 :(得分:52)

是的,只要依赖项列在package.json中。

在包含package.json的目录中,只需输入:

npm install

答案 1 :(得分:12)

我创建了一个npm模块来自动处理安装缺失的模块。

npm-install-missing

它将自动安装所有应用程序依赖项和子依赖项。当子模块安装不正确时,这很有用。

答案 2 :(得分:2)

您可以运行npm install yourModule --save以使用此新安装的模块安装并自动更新package.json

因此,当您第二次运行npm install时,它将安装先前添加的每个依赖项,您不需要逐个重新安装每个依赖项。

答案 3 :(得分:0)

我为此写了一个脚本。
将其放在脚本的开头,运行时将安装任何已卸载的模块。

(function () {
  var r = require
  require = function (n) {
    try {
      return r(n)
    } catch (e) {
      console.log(`Module "${n}" was not found and will be installed`)
      r('child_process').exec(`npm i ${n}`, function (err, body) {
        if (err) {
          console.log(`Module "${n}" could not be installed. Try again or install manually`)
          console.log(body)
          exit(1)
        } else {
          console.log(`Module "${n}" was installed. Will try to require again`)
          try{
            return r(n)
          } catch (e) {
            console.log(`Module "${n}" could not be required. Please restart the app`)
            console.log(e)
            exit(1)
          }
        }
      })
    }
  }
})()

答案 4 :(得分:0)

我受@Aminadav Glickshtein's answer的启发,创建了自己的脚本,该脚本将同步安装所需的模块,因为他的回答缺少这些功能。

我需要一些帮助,因此我提出了一个问题 here 。您可以了解该脚本的工作原理。
结果如下:

const cp = require('child_process')

const req = async module => {
  try {
    require.resolve(module)
  } catch (e) {
    console.log(`Could not resolve "${module}"\nInstalling`)
    cp.execSync(`npm install ${module}`)
    await setImmediate(() => {})
    console.log(`"${module}" has been installed`)
  }
  console.log(`Requiring "${module}"`)
  try {
    return require(module)
  } catch (e) {
    console.log(`Could not include "${module}". Restart the script`)
    process.exit(1)
  }
}

const main = async () => {
  const http    = await req('http')
  const path    = await req('path')
  const fs      = await req('fs')
  const express = await req('express')

  // The rest of the app's code goes here
}

main()

还有一个单线(139个字符!)。它没有全局定义child_modules,没有最后一个try-catch,并且在控制台中未记录任何内容:

const req=async m=>{let r=require;try{r.resolve(m)}catch(e){r('child_process').execSync('npm i '+m);await setImmediate(()=>{})}return r(m)}

const main = async () => {
  const http    = await req('http')
  const path    = await req('path')
  const fs      = await req('fs')
  const express = await req('express')

  // The rest of the app's code goes here
}

main()