- A minimalistic and light-weight screen-recorder built on Electron using HTML, CSS and Vanilla JavaScript.
-
Just choose a video source, and click on "Start Recording" button.
-
Stop the video using "Stop Recording" button.
-
The video gets saved in the Downloads folder.
-
Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS.
-
It takes care of the hard parts so you can focus on the core of your application.
Note: Electron Forge requires Node 10 or above, plus git installed.
- If you have a more recent version of npm or yarn, you can use npx, or yarn create.
npx create-electron-app my-new-app
or
yarn create electron-app my-new-app
then
cd my-new-app
npm start
- Alternatively (less recommended):
npm install -g @electron-forge/cli
electron-forge init my-new-app
cd my-new-app
npm start
cd ElectrRec
npm i && npm start
Please refer to the official documentation for creating distributables and packaging them.
If you're new to contributing to Open Source on Github, this guide can help you get started. Please check out the contribution guide for more details on how issues and pull requests work.