├── .gitignore ├── LICENSE.txt ├── README.md ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 GochoMugo (www.gmugo.in) 4 | 5 | Permission is hereby granted, free of charge, to any person 6 | obtaining a copy of this software and associated 7 | documentation files (the "Software"), to deal in the Software 8 | without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, 10 | and/or sell copies of the Software, and to permit persons to 11 | whom the Software is furnished to do so, subject to the 12 | following conditions: 13 | 14 | The above copyright notice and this permission notice shall 15 | be included in all copies or substantial portions of the 16 | Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY 19 | KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 20 | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR 21 | PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 22 | OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 23 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 24 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 25 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > 2 | > We are now maintaining the source repo updated! 3 | > Please proceed there for more information. 4 | > 5 | > Our npm package (`node-telegram-bot-api-latest@1`) simply mirrors the 6 | > latest version of `node-telegram-bot-api`. 7 | > 8 | > ~~**This is an almost up-to-date fork of the source repo. The open PRs 9 | > at yagop/node-telegram-bot-api are drafted periodically against this 10 | > repo, with the intention of merging them in, as fast as possible. 11 | > This allows us to try out most of the fixes and features, before they 12 | > are published in the official releases.**~~ 13 | > 14 | > ~~**Do not draft any pull-request against this repo. It is NOT a 15 | > replacement of the source/original repo.**~~ 16 | > 17 | > ~~**This is intended 18 | > to be used for development purposes (in production, you are on your own), 19 | > as we wait for @yagop to get some time and merge the open PRs. 20 | > Before using this fork, please ensure you understand that I am NOT 21 | > assuring you that all the PRs will be merged in the source repo. This 22 | > is for advanced users, who just can not wait for some of the cool PRs 23 | > to be merged to start using them asap.**~~ 24 | > 25 | 26 | From **Github**: 27 | 28 | ```sh 29 | $ npm install GochoMugo/node-telegram-bot-api 30 | ``` 31 | 32 | From **npm**: 33 | 34 | ```sh 35 | $ npm install node-telegram-bot-api-latest # note the '-latest' suffix 36 | ``` 37 | 38 | **Note:** If you use **npm**, you'll have to `require("node-telegram-bot-api-latest")` 39 | (note the -latest suffix) instead, since it is a different package. Otherwise, 40 | keep using `require("node-telegram-bot-api")` as if it is the original package. 41 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | exports = module.exports = require("node-telegram-bot-api"); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-telegram-bot-api-latest", 3 | "version": "1.0.0", 4 | "description": "Telegram Bot API", 5 | "main": "./index.js", 6 | "keywords": [ 7 | "telegram", 8 | "telegram bot", 9 | "telegram bot api", 10 | "bot" 11 | ], 12 | "license": "MIT", 13 | "dependencies": { 14 | "node-telegram-bot-api": "latest" 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/GochoMugo/node-telegram-bot-api.git" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/GochoMugo/node-telegram-bot-api/issues" 22 | }, 23 | "homepage": "https://github.com/GochoMugo/node-telegram-bot-api" 24 | } 25 | --------------------------------------------------------------------------------