A simple Electron demo app to record your screen.
This is a sample project developed with the intent to study and demonstrate the capabilities of Electron.
It was developed using web techs (such as HTML5, CSS3 and vanilla js) and built on Electron.
This app records your screen and saves for later. You can select the video source among your entire screen or and specific window.
$ git clone https://github.com/alande-amorim/electron-screen-recorder.git
$ cd electron-screen-recorder
$ npm install
You can now build the executables (eg. deb, exe).
Electron takes care of that too.
With the repository already cloned and installed, build the binaries by running:
$ npm run make
Check inside ./out/
directory for the installable binaries.
If you wish to change something, run npm start
and a new window will open.
This npm process will be kept running as long as the window is opened.
Since there’s no hot reloading built in this app, everytime you change something you need to refresh the app window. You can do that by sending rs
into the npm process.
If you’ve found something wrong, feel free to open an issue or submit a pull request.
The idea for this app came from Fireship’s video. Make sure to check this channel on Youtube.
I just followed along and did some tweaks here and there.