当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js process.throwDeprecation用法及代码示例


process.throwDeprecation 属性是 process 模块的内置应用程序编程接口,用于指示当前 Node.js 进程是否设置了 -throw-deprecation 标志。 process.throwDeprecation 是可变的,因此可能会在运行时更改弃用警告是否导致错误。

用法:

process.throwDeprecation

返回值:此属性指示是否在当前 Node.js 进程上设置了 -throw-deprecation 标志。

下面的例子说明了 Node.js 中 process.throwDeprecation 属性的使用:



范例1:

Javascript


// Node.js program to demonstrate the
// process.throwDeprecation Property
  
// Include process module
const process = require('process');
  
// Printing process.throwDeprecation
// property value
console.log(process.throwDeprecation);

运行命令:node -throw-deprecation hello.js

输出 1:

true

运行命令:节点 hello.js

输出 2:

undefined

范例2:

Javascript


// Node.js program to demonstrate the
// process.throwDeprecation Property
  
// Include process module
const process = require('process');
  
// Instance Properties
process.throwDeprecation = false;
  
// Printing process.throwDeprecation
// property value
console.log(process.throwDeprecation);
  
// Instance Properties
process.throwDeprecation = true;
  
// Printing process.throwDeprecation
// property value
console.log(process.throwDeprecation);

运行命令:node -throw-deprecation hello.js

输出 1:

true
true

运行命令:节点 hello.js

输出 2:

false
true

参考:https://nodejs.org/api/process.html#process_process_throwdeprecation




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Node.js process.throwDeprecation Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。