Makes your console logs much better.
npm install @appsweet-co/debug
Import utilities directly into your files:
import { Debug, DebugOpts } from '@appsweet-co/debug';
const config: DebugOpts = {
disabled: ['warn'],
prefix: 'FooBar',
showMeta: true
};
const debug = Debug(config);
debug.log('Hello World')
// [LOG] [FooBar] Hello World
debug.warn('Goodbye World');
// <No output>
We generate API documentation using TypeDoc. View the docs page here.
We generate this README with the @appnest/readme tool.
Run npx @appnest/readme generate
or npm run readme
to update this file.
👤 Appsweet.co
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Give a ⭐️ if this project helped you!
Generated using TypeDoc