0
我更好地解釋一下自己:我想用Node的npm模塊node-telegram-bot-api
來控制我的電報使者。在Angular 2組件中導入一個用js編寫的npm模塊?
npm install node-telegram-bot-api
這是例如使用它的節點,完全在Javascript: 如何導入在角2部件內置模塊,出口類中,在本例中調用它的功能,怎麼樣?
var TelegramBot = require('node-telegram-bot-api');
var token = 'YOUR_TELEGRAM_BOT_TOKEN';
// Setup polling way
var bot = new TelegramBot(token, {polling: true});
// Matches /echo [whatever]
bot.onText(/\/echo (.+)/, function (msg, match) {
var fromId = msg.from.id;
var resp = match[1];
bot.sendMessage(fromId, resp);
});
該模塊在Github上here。
告訴我,如果我得到的東西錯誤的,因爲我仍然在角2