Example of sendPhoto method with pure NodeJS without third-party modules.
const fs = require('fs');
const https = require('https');
const chat_id = '...123...'; // telegram chat id
const botToken = '...aaa...'; // telegram bot token
const imageBuffer = fs.readFileSync('./image.jpg');