November 2019
Beginner
436 pages
8h 52m
English
First of all, you need to be familiar with the desktopCapturer API that Electron provides. According to the official documentation, this API allows you to do the following:
Now, we are going to walk through the basics and introduce the Snip button click event, which has access to the capturing sources:
const onSnipClick = async () => { const { desktopCapturer, remote } = window.require('electron'); const screen ...Read now
Unlock full access