Chococoin / node-telegram-bot-boilerplate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

๐Ÿค– node-telegram-bot-boilerplate

v1.0.20211121 License: MIT Language: TypeScript ECMAScript: 2019 Discord Server

Create your telegram bot with this friendly boilerplate. Use this repository as a template for your bot

This is a github template, you can fork it or use it as a template to start a new project with this repository as hello-world. I hate to start a new project with an empty template, often I miss correct configuration, readme instruction or I need samples of code. Use this repository as a template to solve this problem.

๐ŸŽ Support: Donate

This project is free, open source and I try to provide excellent free support. Why donate? I work on this project for several hours in my spare time and try to keep it up to date and working. THANK YOU!

Donate Paypal Donate Ko-Fi Donate Github Sponsors Donate Patreon Donate Bitcoin Donate Ethereum

๐Ÿ“Ž Menu

๐Ÿ’ก Features

  • [โœ”๏ธ] Easy to use
  • [โœ”๏ธ] MIT License
  • [โœ”๏ธ] Make telegram bot with node
  • [โœ”๏ธ] Friendly boilerplate + Github templates
  • [โœ”๏ธ] Typescript + TSPaths preconfigured
  • [โœ”๏ธ] Userfriendly folders tree
  • [โœ”๏ธ] Prettify and ESLint preconfigured
  • [โœ”๏ธ] all-contributors-cli and all-shields-cli preconfigured
  • [โœ”๏ธ] JEST Test preconfigured
  • [โœ”๏ธ] Full async code
  • [โœ”๏ธ] Github and Vscode dotfiles preconfigured
  • [โœ”๏ธ] Translations: ๐Ÿ‡ฌ๐Ÿ‡ง ๐Ÿ‡ฎ๐Ÿ‡น ๐Ÿ‡ต๐Ÿ‡ฑ (Help me โค๏ธ)

๐Ÿ”จ Developer Mode

๐Ÿ Run Project

  1. Clone this repository or download nightly, beta or stable.
  2. Write to @botfather on telegram and create new bot (save token and set bot username)
  3. Run with correct values: npm run init:token --username name_bot --token 1234:asdfghjkl
  4. Run npm run init
  5. Run npm run dev
  6. Write /start on telegram bot.

๐Ÿ’พ Setup Project

If you want to replace all strings (example: package name, author, URLs, etc...) in the markdown file, source files and others files of this project you need to edit setup.json with correct values and run npm run setup.

๐Ÿช Configuring Webhooks

If you want to run the bot using webhooks you need to place your SSL certificate and Private key in the certs directory and configure the webhook object in the config file like:

webhook: {
 url: "https://my.host.com:8443", // or DNS name
 port: 8443,
 selfSigned: true
},

If you want to run the bot with your self-signed certificate selfSigned flag needs to be set to true, this will allow us to communicate to Telegram that our webhook server can be trusted. More information about webhooks with self-signed certificates can be found here

you can generate your self-signed certificate using the utility script:

npm run init:certs [common-name]

Replace common-name with the same host-name or IP address you are using in the webhook.url path of the config.js file

๐Ÿ–ฅ๏ธ Deploy

๐Ÿš€ Native Run

Deploy bot to your server and:

  1. Run with correct values: npm run init:token --token asdfghjkl
  2. Run init npm run init
  3. Generate release npm run release
  4. Start bot npm run start-pm2

๐Ÿณ Docker

You can also release and run your bot as a Docker container.

docker run ptkdev/node-telegram-bot-boilerplate:<version>

where <version> can be one of the releases (ex. v1.0.0) or latest

For your convenience, in case you would like to run the bot in webhook mode, we have already exposed 8443 port on our docker files.

To change the configuration to match yours, just change the Dockerfile line with the EXPOSE instruction

EXPOSE 8443

in the end, you'll be able to expose the docker port using -p <port>:<host-port> docker parameter.

The preferred way to provide the configuration file is to mount the final configuration under /app/dist/configs/config.js:

docker run -v ${PWD}/app/configs/config.js:/app/dist/configs/config.js ptkdev/node-telegram-bot-boilerplate:<version>

Note: the docker images have been prepared for many architectures but have been tested mainly on amd64 architecture.

๐Ÿ“š Documentation

Run npm run docs

๐Ÿ‘‘ Backers and Sponsors

Thanks to all our backers! ๐Ÿ™ Donate 3$ or more on paypal, ko-fi, github or patreon and send me email with your avatar and url.

๐Ÿ‘จโ€๐Ÿ’ป Contributing

I โค๏ธ contributions! I will happily accept your pull request! Translations, grammatical corrections (GrammarNazi you are welcome! Yes my English is bad, sorry), etc... Do not be afraid, if the code is not perfect we will work together ๐Ÿ‘ฏ and remember to insert your name in .all-contributorsrc and package.json files.

Thanks goes to these wonderful people (emoji key):


Patryk Rzucidล‚o

๐Ÿ’ป ๐ŸŒ ๐Ÿ“– ๐Ÿ›

Francesco Maida

๐Ÿ’ป ๐Ÿ“–

Veronica Di Giorgio

๐Ÿš‡ ๐Ÿ“–

๐Ÿ’ฐ In the future, if the donations allow it, I would like to share some of the success with those who helped me the most. To me, Open Source means sharing code, development knowledge and also donations!

๐Ÿฆ„ Other Projects

๐Ÿ’ซ License

  • Code and Contributions have MIT License
  • Images and logos have CC BY-NC 4.0 License
  • Documentations and Translations have CC BY 4.0 License

About

License:Other


Languages

Language:TypeScript 81.2%Language:JavaScript 9.6%Language:Smarty 6.6%Language:Dockerfile 2.3%Language:Shell 0.2%