Skip to main content

Warning: Considered as unstable. I havenā€™t tested everything yet, so Iā€™m not entirely sure.

GramJS for Deno

GramJS is a popular Telegram client written in JavaScript for Node.js and browsers, with its core being based on Telethon.

This is a port of GramJS for Deno, written in TypeScript.

Deno Land module: https://deno.land/x/grm

What is Deno? https://deno.land

Documentation

Consider following the original documentation by original GramJS maintainers.

See the Quick Start section, for a minimal example.

Quick Start

Here youā€™ll learn how to obtain necessary information to create Telegram application, authorize into your account and send yourself a message.

First, youā€™ll need to obtain an API ID and hash:

  1. Login into your Telegram account
  2. Then click ā€œAPI development toolsā€ and fill your application details (only app title and short name are required)
  3. Finally, click ā€œCreate applicationā€

Warning: Never share any API/authorization details, that will compromise your application and account.

When youā€™ve successfully created the application, set the API ID and hash you just got from Telegram in the following code.

import { StringSession, TelegramClient } from "https://deno.land/x/grm/mod.ts";

// Login and create an application on https://my.telegram.org
// to get values for API ID and API Hash.
const apiId = 123456;
const apiHash = "abcd1234";

// Fill in this later with the value from client.session.save(),
// so you don't have to login each time you run the file.
const stringSession = new StringSession("");

console.log("Loading interactive example...");
const client = new TelegramClient(stringSession, apiId, apiHash, {
  connectionRetries: 5,
});

await client.start({
  phoneNumber: () => prompt("Enter your phone number:")!,
  password: async () => await prompt("Enter your password:")!,
  phoneCode: async () => await prompt("Enter the code you received:")!,
  onError: (err) => console.log(err),
});

console.log("You should now be connected.");
// Save the output of the following and use it in `new SessionString("")`
// to avoid logging in again next time.
console.log(client.session.save());

// Send a message to yourself
await client.sendMessage("me", { message: "Hello!" });

Lets run it:

deno run -A file-name.ts

Youā€™ll be prompted to enter your phone number (in international format), and the code you received from Telegram. Save the output of client.session.save() somewhere and use it in new StringSession("") to avoid logging again later. After connecting successfully, you should have a ā€œHelloā€ message in your Saved Messages.

Notes

This is a direct port of GramJS for Deno. This was just an attempt, which turned out to be a successful one. At least, the startup, the getting started example, and file uploading and downloading works. And Iā€™m happy about it. And I donā€™t know if this works for you or not, but it works for me :)

It took me like 4 days. Total of 20h6m for this repository alone. And including dependency porting and figuring out the original code, its a total of almost 34.8h for the first release. I didnā€™t just copy and paste stuff ā€” I did, but I manually wrote lot of the files.

I havenā€™t added any JSDocs yet. Iā€™ll add them later. I didnā€™t add any because its a mess if there are a lot of comments while porting (We can just collapse them, I know. But my machine canā€™t take too much load, its an old one).

I had to port the following Node packages to Deno. I know that some of them is not even have to be ported, but I didnā€™t realised that then.

Contributing

Pull requests are welcome. But, I only suggest you to open pull requests if they are related to fixes or improvments with the porting, migrating from Node packages to Denoā€™s built-in or std stuff, etc. Pull requests related to GramJS core itself are not very welcomed here, because I was thinking about following the original GramJS repository and keeping up with their changes.

I am not experienced in most of the core stuff used in GramJS. Most importantly, websockets. I really want to migrate from using Node modules such as socks and websocket to using Denoā€™s built-in websocket stuff, if it is possible (it should be). If you can help migrating it, that would be great!

Credits

I only ported the library by changing some imports and porting some dependencies to Deno, anyone could do it.

All actual credits goes to

  • the original authors and contributors of GramJS,
  • authors of the dependencies,
  • authors of already ported dependencies,
  • and everyone else who was a part of this.