1.0.3 • Published 4 years ago

dedebug v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Library for sending telegram debug messages

Install

$ yarn add dedebug

How to use

const {
	sendDebug
} = require('dedebug')

// Variant #1
sendDebug({
	project: 'demo',
	message: {
		var: 123
	}
}).then(res => {
	console.warn('=>', res.body);
})

// Variant #2
sendDebug({
	project: 'demo',
	message: 'Some text',
}).then(res => {
	console.warn('=>', res.body);
})

Debug notifications

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago