Inspectable - Make the output of a class instance in the console meaningful
Features
- Self-Sufficient. The library has zero dependencies (except decorators support).
- Reliable. The library is written in TypeScript and covered by tests.
- Modern. The library comes with native ESM support
Installation
Node.js 12.0.0 or newer is required
- Using
npm
(recommended)
npm i inspectable
- Using
Yarn
yarn add inspectable
- Using
pnpm
pnpm add inspectable
Example usage
import { inspectable } from 'inspectable';
class APIRequest {
public method = 'pay';
private token = 'super-private';
}
const request = new APIRequest();
console.log(request);
inspectable(APIRequest, {
serialize(instance) {
return {
method: instance.method
};
}
});
console.log(request);
Decorators
import 'reflect-metadata';
import { Inspectable, Inspect } from 'inspectable';
@Inspectable({})
class APIRequest {
@Inspect()
public method = 'pay';
private token = 'super-private';
@Inspect({ nullable: false })
private signal = null;
@Inspect({ as: 'firstName' })
private name = 'john';
@Inspect({ compute: true })
public canRequest() {
return Boolean(this.token);
}
}
const request = new APIRequest();
console.log(request);