实验警告:fs.promises API是实验性的

Kir*_*eed 4 npm autorest

我是node和npm的新手,并试图了解AutoRest.

当我输入

autorest --list-available
Run Code Online (Sandbox Code Playgroud)

进入powershell ISE我得到

AutoRest code generation utility [version: 2.0.4262; node: v10.1.0]
(C) 2018 Microsoft Corporation.
https://aka.ms/autorest
autorest : (node:12580) ExperimentalWarning: The fs.promises API is experimental
At line:1 char:1
+ autorest --list-available
+ ~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: ((node:12580) Ex...is experimental:String) [], RemoteExc 
   eption
    + FullyQualifiedErrorId : NativeCommandError

 Extension Name                 Version       

 @microsoft.azure/autorest-core 2.0.4278       
 @microsoft.azure/autorest-core 2.0.4277       
 @microsoft.azure/autorest-core 2.0.4276       
 @microsoft.azure/autorest-core 2.0.4275       
 @microsoft.azure/autorest-core 2.0.4274       
 @microsoft.azure/autorest-core 2.0.4272       
 @microsoft.azure/autorest-core 2.0.4271       
 @microsoft.azure/autorest-core 2.0.4269       
 @microsoft.azure/autorest-core 2.0.4263       
 @microsoft.azure/autorest-core 2.0.4262       
Failure:
TypeError: volume[member].bind is not a function
TypeError: volume[member].bind is not a function
    at patchFilesystem 
(C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\static-loader.js:277:43)
    at C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\static-loader.js:281:18
    at Object.global.staticloader.undo 
(C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\static-loader.js:163:7)
    at process.exit.n [as exit] 
(C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\static-loader.js:170:27)
    at main (C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\app.js:153:21)
    at process._tickCallback (internal/process/next_tick.js:68:7)
(node:12580) UnhandledPromiseRejectionWarning: Error: EBADF: bad file descriptor, close
    at Object.fs.closeSync (fs.js:529:3)
    at StaticVolumeFile.shutdown 
(C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\static-loader.js:352:10)
    at StaticFilesystem.shutdown 
(C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\static-loader.js:406:17)
    at process.exit.n [as exit] 
(C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\static-loader.js:169:11)
    at main (C:\Users\kirst\AppData\Roaming\npm\node_modules\autorest\dist\app.js:239:17)
    at process._tickCallback (internal/process/next_tick.js:68:7)
(node:12580) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated 
either by throwing inside of an async function without a catch block, or by rejecting a promise 
which was not handled with .catch(). (rejection id: 1)
(node:12580) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the 
future, promise rejections that are not handled will terminate the Node.js process with a non-zero 
Run Code Online (Sandbox Code Playgroud)

怎么了?退出代码.

Cri*_*sty 28

更新到最新的节点版本 (v12.6+) 会删除警告。


Uma*_*har 15

我当时node@^10.15.1使用的是旧版本,所以我将其更新为12.16.1or12.16.2并得到了修复。


Akx*_*kxe 9

该模块autorest使用新fs语法,即使用 Promise 代替回调。然而,这还不稳定,因此是警告。没有什么可担心的,除非您想在生产中使用它。但即便如此,只要您将 autorest 与 node 一起更新,就不会出现问题。

至于错误,它可能是你的配置中的东西。尝试制作最小错误示例并将问题发布到 autorest git。


Ore*_*444 9

是的,您可以放心地忽略此警告.如果要禁止它(以及所有警告),请使用node --no-warnings而不是运行脚本node.

在你的例子中:

node --no-warnings `which autorest`
Run Code Online (Sandbox Code Playgroud)

  • 文件系统API本身不是试验性的,而是基于诺言的(因为它相对较新,并且其公共接口可能会更改)。 (9认同)
  • 令人震惊的是,在2019年,他们的文件系统支持仍然是"实验性的". (8认同)
  • 此警告在最新的节点版本中消失(尝试使用 v12.6.0) (2认同)

Con*_*ule 8

我在node@10.16.1,我将其更新为12.18.2并修复了!