Warning: node.js detection failed, sbt will use the Rhino based Trireme JavaScript engine

前端 未结 6 733
不知归路
不知归路 2020-12-31 03:44

I\'m new to Play framework. Please explain the meaning of the below warning.

Warning: node.js detection failed, sbt will use the Rhino based Trireme J

相关标签:
6条回答
  • 2020-12-31 04:24

    As an alternative to setting the environment variable, you can add this line to your build.sbt file:

    JsEngineKeys.engineType := JsEngineKeys.EngineType.Node
    

    See: https://github.com/sbt/sbt-js-engine

    0 讨论(0)
  • 2020-12-31 04:33

    sbt plugins requiring a JS engine are used only in the build process, and so missing Node.js only slows down assets building stages if you use any.

    The built application is not affected.

    Anyway, you may want to install node.js to your PATH, where it should be auto-detected.

    0 讨论(0)
  • 2020-12-31 04:35

    in ubuntu

    curl -sL https://deb.nodesource.com/setup | sudo bash -
    
    sudo apt-get install -y nodejs
    

    then add as above to your .profile in your home directory

    export SBT_OPTS="${SBT_OPTS} -Dsbt.jse.engineType=Node -Dsbt.jse.command=$(which node)"
    

    then

     . ./.profile 
    

    to reload your .profile

    For a more flexible install using node version manager check the following tutorial: how to install node js on an ubuntu 14.04 server

    Build again and the warning about using the Trireme stuff should be gone.

    0 讨论(0)
  • 2020-12-31 04:41

    In Windows:

    • Install node.js
    • Go to Control Panel - System and Security - System - Advanced system settings
    • Click Environment Variables...
    • Search in System variables for SBT_OPTS
      • If such exists, click Edit... and concatenate -Dsbt.jse.engineType=Node to Variable value
      • If such does NOT exist, click New... and write SBT_OPTS to Variable name and -Dsbt.jse.engineType=Node to Variable value
    • Click OK - OK - OK
    • Restart any command prompt (cmd, PowerShell) that is currently running Play Framework
    0 讨论(0)
  • 2020-12-31 04:41

    in Windows 10:

    Install node.js from https://nodejs.org/en/ (The installer automatically adds node.js to your PATH)

    then add:

    export SBT_OPTS="$SBT_OPTS -Dsbt.jse.engineType=Node"
    

    to your plugins.sbt in

    . ./project/plugins.sbt
    

    Worked for me - the warning has disappeared!

    EDIT: Apparently plugins.sbt was the wrong place to add the

    export SBT_OPTS="$SBT_OPTS -Dsbt.jse.engineType=Node"
    

    ...although the warning disappeared when loading my app, it led to an error when relaunching the app a couple of hours later:

    error: not found: value export

    I would be glad if anyone could help and tell me where to put the export.

    0 讨论(0)
  • 2020-12-31 04:44

    You need to install Node.js and then tell the sbt/java engine to use it.

      brew install node
    

    Edit .bash_profile and add:

       export SBT_OPTS="${SBT_OPTS} -Dsbt.jse.engineType=Node -Dsbt.jse.command=$(which node)"
    

    This eliminated the warning for me on OSX

    0 讨论(0)
提交回复
热议问题