Skip to content
dishook / 1.0.7

dishook 1.0.7

Install from the command line:
Learn more about npm packages
$ npm install @cvyl/dishook@1.0.7
Install via package.json:
"@cvyl/dishook": "1.0.7"

About this version

Welcome to @ly-nld/dishook πŸ‘‹

Version Documentation Maintenance License: MIT

Simple Discord Webhook Wrapper

🏠 Homepage

Install

npm install

Run tests

npm run test

Example usage

import { Embed, Webhook } from '@ly-nld/dishook'

const hook = new Webhook('WEBHOOK_HERE')
const embed = new Embed()

embed
 	.setTitle('Hello, world!')
	.setDescription('This is a description')
	.setURL('https://google.com')
	.setColor(0x00ff00)
	.setFooter({
		text: 'This is a footer',
		icon_url: 'https://google.com',
	})
	.setTimestamp()
	.addField({
		name: 'Field 1',
		value: 'Hello, world!',
		inline: true,
	})

hook.addEmbed(embed).send()

hook
	.setTTS(true)
	.setContent('Hello, world!')
	.setUsername('Webhook')
	.setAvatarUrl('https://google.com')
	.send()

Details


Assets

  • dishook-1.0.7.tgz

Download activity

  • Total downloads 0
  • Last 30 days 0
  • Last week 0
  • Today 0

Recent versions

View all