No Description

Jencansee ed3ee2c345 Update README.md (#260) 3 years ago
__tests__ cf4adfb77b Add friendly method getDialogs and iterDialogs 4 years ago
examples 24abd25a72 Improve Webpack configuration (#215) 3 years ago
gramjs 55060a55ce Identify Deno and remove `browser-or-node` (#259) 3 years ago
.bablerc 00d5d83f0e refactor most code to TS 4 years ago
.gitignore c0033c6faf stop using mixins 4 years ago
.npmignore 50a443fee8 Fix npm package 4 years ago
.prettierignore cf4adfb77b Add friendly method getDialogs and iterDialogs 4 years ago
.prettierrc.json a933fea322 Fix typo in reconnect 3 years ago
LICENSE 272930d0c7 Create LICENSE 5 years ago
README.md ed3ee2c345 Update README.md (#260) 3 years ago
babel.config.js cf4adfb77b Add friendly method getDialogs and iterDialogs 4 years ago
empty.txt 0b41308b09 message 4 years ago
jest.config.js cf4adfb77b Add friendly method getDialogs and iterDialogs 4 years ago
npmpublish.bat c0033c6faf stop using mixins 4 years ago
package-lock.json 55060a55ce Identify Deno and remove `browser-or-node` (#259) 3 years ago
package.json 55060a55ce Identify Deno and remove `browser-or-node` (#259) 3 years ago
publish_npm.js f8160499d1 Use JS instead of TL files. 3 years ago
tsconfig.json fd71682fc3 use es2017 instead 3 years ago
type_doc.js 1176753f30 add buttons to messages 3 years ago
webpack.config.js 24abd25a72 Improve Webpack configuration (#215) 3 years ago

README.md

GramJS

A Telegram client written in JavaScript for Node.js and browsers, with its core being based on Telethon.

How to get started

Here you'll learn how to obtain necessary information to create telegram application, authorize into your account and send yourself a message.

Note that if you want to use a GramJS inside of a browser, refer to this instructions.

Install GramJS:

$ npm i telegram -D

Install input package, we'll use it to prompt ourselves inside terminal for login information:

$ npm i input -D

After installation, 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 required)
  3. Finally, click "Create application"

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

When you've successfully created the application, change apiId and apiHash on what you got from telegram.

Then run this code to send a message to yourself.

import { TelegramClient } from "telegram";
import { StringSession } from "telegram/sessions";
import input from "input";

const apiId = 123456;
const apiHash = "123456abcdfg";
const stringSession = new StringSession(""); // fill this later with the value from session.save()

(async () => {
  console.log("Loading interactive example...");
  const client = new TelegramClient(stringSession, apiId, apiHash, {
    connectionRetries: 5,
  });
  await client.start({
    phoneNumber: async () => await input.text("Please enter your number: "),
    password: async () => await input.text("Please enter your password: "),
    phoneCode: async () =>
      await input.text("Please enter the code you received: "),
    onError: (err) => console.log(err),
  });
  console.log("You should now be connected.");
  console.log(client.session.save()); // Save this string to avoid logging in again
  await client.sendMessage("me", { message: "Hello!" });
})(); 

Note that you can also save auth key to a folder instead of a string, change stringSession into this:

> const storeSession = new StoreSession("folder_name");
> ```

Be sure to save output of `client.session.save()` into `stringSession` or `storeSession` variable to avoid logging in again.



## Running GramJS inside browsers

GramJS works great in combination with frontend libraries such as React, Vue and others.

While working within browsers, GramJS is using `localStorage` to cache the layers.

To get a browser bundle of GramJS, use the following command:

bash NODE_ENV=production npx webpack


## Calling the raw API
To use raw telegram API methods use [invoke function](https://gram.js.org/beta/classes/TelegramClient.html#invoke).

javascript await client.invoke(new RequestClass(args)) ```

Documentation

General documentation, use cases, quick start, refer to gram.js.org, or older version of documentation (will be removed in the future).

For more advanced documentation refer to gram.js.org/beta (work in progress).

Ask a question

If you have any questions about GramJS, feel free to open an issue or ask directly in our telegram group - @GramJSChat.