暂无描述

painor a780f5573b Add number of retries as a client param 4 年之前
__tests__ 5b17bd8370 Add nested unparse test case 5 年之前
examples 73f22ffdfb update main.ts example 4 年之前
gramjs a780f5573b Add number of retries as a client param 4 年之前
.bablerc 00d5d83f0e refactor most code to TS 4 年之前
.gitignore c0033c6faf stop using mixins 4 年之前
.npmignore 50a443fee8 Fix npm package 4 年之前
LICENSE 272930d0c7 Create LICENSE 5 年之前
README.md 225a1b80e0 added npx tgsession command to README.md (#78) 4 年之前
babel.config.js 77f2c77e34 Add unit testing 5 年之前
empty.txt 0b41308b09 message 4 年之前
jest.config.js 18a8b47c9e Refactor and add specs for Scanner/MarkdownParser 5 年之前
npmpublish.bat c0033c6faf stop using mixins 4 年之前
package-lock.json 3b17ff94f1 Fix entity caching 4 年之前
package.json 3b17ff94f1 Fix entity caching 4 年之前
publish_npm.js 34e5bba1b4 Fix typo 4 年之前
tsconfig.json 50a443fee8 Fix npm package 4 年之前
webpack.config.js 7c59651b98 fix error: process is not defined 4 年之前

README.md

GramJS

GramJS is Telegram client implementation in Javascript. This project's core is completely based on Telethon. All the files which are fully based on it. don't forget to have a look to the original project.

Obtaining your API ID and Hash

  1. Follow this link and login with your phone number.
  2. Click under API Development tools.
  3. A Create new application window will appear. Fill in your application details. There is no need to enter any URL, and only the first two fields (App title and Short name) can be changed later as long as I'm aware.
  4. Click on Create application at the end. Now that you have the API ID and Hash

Running GramJS

If you want to run in it in a browser just use webpack (a configuration file is already present). The output will be in browser folder. In the browser gramjs will use localstorage to not regenerate api methods each run. check the examples folder for more info.

Generate Session String

To generate session string , simply run npx tgsession and provide required details

Using raw api

Currently you can use any raw api function using await client.invoke(new RequestClass(args)) . you can find all the requests and types at https://gram.js.org/

Docs

you can find the docs at https://painor.gitbook.io/gramjs/ which has all the functions with a usage example