setup-maven/node_modules/deprecation
Peter Thorin d24fc39165 Update dependencies 2022-10-10 11:17:09 +02:00
..
dist-node Husky commit correct node modules 2019-12-07 16:09:23 +03:00
dist-src Husky commit correct node modules 2019-12-07 16:09:23 +03:00
dist-types Husky commit correct node modules 2019-12-07 16:09:23 +03:00
dist-web Husky commit correct node modules 2019-12-07 16:09:23 +03:00
LICENSE Husky commit correct node modules 2019-12-07 16:09:23 +03:00
README.md Husky commit correct node modules 2019-12-07 16:09:23 +03:00
package.json Update dependencies 2022-10-10 11:17:09 +02:00

README.md

deprecation

Log a deprecation message with stack

build

Usage

Browsers

Load deprecation directly from cdn.pika.dev

<script type="module">
  import { Deprecation } from "https://cdn.pika.dev/deprecation/v2";
</script>
Node

Install with npm install deprecation

const { Deprecation } = require("deprecation");
// or: import { Deprecation } from "deprecation";
function foo() {
  bar();
}

function bar() {
  baz();
}

function baz() {
  console.warn(new Deprecation("[my-lib] foo() is deprecated, use bar()"));
}

foo();
// { Deprecation: [my-lib] foo() is deprecated, use bar()
//     at baz (/path/to/file.js:12:15)
//     at bar (/path/to/file.js:8:3)
//     at foo (/path/to/file.js:4:3)

To log a deprecation message only once, you can use the once module.

const Deprecation = require("deprecation");
const once = require("once");

const deprecateFoo = once(console.warn);

function foo() {
  deprecateFoo(new Deprecation("[my-lib] foo() is deprecated, use bar()"));
}

foo();
foo(); // logs nothing

License

ISC