Я пытаюсь заставить моего робота по чтению RSS работать с ботом, но все равно получаю сообщение об ошибке и не могу найти свое решение ...
[root@vps641426]# node index.js
/root/index.js:10
let articlesGuids = {};
^^^^^^^^^^^^^
SyntaxError: Unexpected identifier
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:906:3
Это код index.js:
process.env["NTBA_FIX_319"] = 1; // fix promises error in node-telegram-bot-api
const FeedParser = require('feedparser');
const TelegramBot = require('node-telegram-bot-api');
const assert = require('assert');
const config = require('./config.json');
const fs = require('fs');
const request = require('request');
// track articles guids
let articlesGuids = {};
// track open chats
let chatIds = {};
const bot = new TelegramBot(config.token, {polling: true});
bot.onText(/\/start/, (msg, match) => {
const chatId = msg.chat.id;
chatIds[chatId] = 1;
bot.sendMessage(chatId, 'Welkom bij District8!');
console.log(`New user: ${getUserDesc(msg.from)}`);
});