Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@grammyjs/hydrate

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@grammyjs/hydrate

Hydration plugin for grammY

  • 1.4.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.8K
decreased by-18.49%
Maintainers
1
Weekly downloads
 
Created
Source

Hydration plugin for grammY

Please confer the official documentation for this plugin to learn more about this plugin, including about its Installation.

Here is a brief description, though: This plugin installs useful methods on two types of objects, namely

  1. the results of API calls, and
  2. the objects on the context object ctx.

The purpose of this plugin is best illustrated by an example.

WITHOUT this plugin:

bot.on(":photo", async (ctx) => {
    const statusMessage = await ctx.reply("Processing your image, please wait");
    await doWork(); // some long image processing
    await ctx.api.deleteMessage(statusMessage.message_id);
});
bot.on("callback_query", async (ctx) => {
    await ctx.answerCallbackQuery();
});

WITH this plugin:

bot.on(":photo", async (ctx) => {
    const statusMessage = await ctx.reply("Processing your image, please wait");
    await doWork(); // some long image processing
    await statusMessage.delete(); // so easy!
});
bot.on("callback_query", async (ctx) => {
    await ctx.callbackQuery.answer(); // this works now, too
});

Keywords

FAQs

Package last updated on 01 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc