### Install Seyfert using Bun Source: https://github.com/tiramisulabs/seyfert/blob/main/README.md Installs the Seyfert Discord framework using the Bun JavaScript runtime. Bun offers fast installation and execution speeds, making it an attractive option for modern JavaScript development. ```sh bun add seyfert ``` -------------------------------- ### Install Seyfert using npm Source: https://github.com/tiramisulabs/seyfert/blob/main/README.md Installs the Seyfert Discord framework using the npm package manager. This is a standard installation method for Node.js projects. ```sh npm i seyfert ``` -------------------------------- ### Install Seyfert using pnpm Source: https://github.com/tiramisulabs/seyfert/blob/main/README.md Installs the Seyfert Discord framework using the pnpm package manager. This is a common method for Node.js projects requiring fast and reliable dependency management. ```sh pnpm add seyfert ``` -------------------------------- ### Install discord-api-types using npm, yarn, or pnpm Source: https://github.com/tiramisulabs/seyfert/blob/main/src/types/README.md Demonstrates the commands to install the discord-api-types package using popular JavaScript package managers like npm, yarn, and pnpm. ```sh npm install discord-api-types yarn add discord-api-types pnpm add discord-api-types ``` -------------------------------- ### Install Seyfert using Deno Source: https://github.com/tiramisulabs/seyfert/blob/main/README.md Adds the Seyfert Discord framework to a Deno project via npm compatibility. This allows Deno developers to leverage npm packages directly within their Deno applications. ```sh deno add npm:seyfert ``` -------------------------------- ### Importing Gateway Types in CommonJS (Node.js) Source: https://github.com/tiramisulabs/seyfert/blob/main/src/types/README.md Provides an example of importing gateway-specific types, such as GatewayVersion, for a particular API version (e.g., v10) using CommonJS syntax. ```javascript const { GatewayVersion } = require('discord-api-types/gateway/v10'); ``` -------------------------------- ### Importing API Types in Deno from deno.land/x Source: https://github.com/tiramisulabs/seyfert/blob/main/src/types/README.md Illustrates importing specific API types, like APIUser, for API version v10 from the deno.land/x registry, a common way to import Deno modules. ```typescript import { APIUser } from 'https://deno.land/x/discord_api_types/v10.ts'; ``` -------------------------------- ### Importing API Types in Deno from GitHub Source: https://github.com/tiramisulabs/seyfert/blob/main/src/types/README.md Shows how to import specific API types, such as APIUser, for API version v10 directly from the project's GitHub repository, compatible with the Deno runtime. ```typescript import { APIUser } from 'https://raw.githubusercontent.com/discordjs/discord-api-types/main/deno/v10.ts'; ``` -------------------------------- ### Importing API Types in Deno from skypack.dev Source: https://github.com/tiramisulabs/seyfert/blob/main/src/types/README.md Demonstrates importing specific API types, such as APIUser, for API version v10 from skypack.dev, which provides CDN access to npm packages for Deno. ```typescript import { APIUser } from 'https://cdn.skypack.dev/discord-api-types/v10?dts'; ``` -------------------------------- ### Importing Gateway Types in ES Modules (TypeScript/Modern JS) Source: https://github.com/tiramisulabs/seyfert/blob/main/src/types/README.md Demonstrates importing gateway-specific types, like GatewayVersion, for a designated API version (e.g., v10) using ES Module syntax. ```typescript import { GatewayVersion } from 'discord-api-types/gateway/v10'; ``` -------------------------------- ### Importing API Types in CommonJS (Node.js) Source: https://github.com/tiramisulabs/seyfert/blob/main/src/types/README.md Shows how to import specific API types, such as APIUser, for a target API version (e.g., v10) using CommonJS module syntax, common in Node.js environments. ```javascript const { APIUser } = require('discord-api-types/v10'); ``` -------------------------------- ### Importing API Types in ES Modules (TypeScript/Modern JS) Source: https://github.com/tiramisulabs/seyfert/blob/main/src/types/README.md Illustrates importing specific API types, like APIUser, for a given API version (e.g., v10) using ES Module syntax, suitable for TypeScript and modern JavaScript projects. ```typescript import { APIUser } from 'discord-api-types/v10'; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.