1.0.2 • Published 4 years ago
guilded-node v1.0.2
About
guilded-node is a powerful NPM Package that makes it easy to interact with the Guilded API.
Installation
npm install guilded-node
yarn add guilded-node
pnpm add guilded-node
Example Usage
const { Webhook } = require('guilded-node')
const webhook = new Webhook('WEBHOOK_URL)
webhook.send('Hello world!').then(() => {
console.log('Webhook sent!')
})