https://github.com/shivamjoker/keymote
Keyboard simulator app made in ElectronJS
https://github.com/shivamjoker/keymote
electron keyboard-simulator remote-control utilities
Last synced: 4 months ago
JSON representation
Keyboard simulator app made in ElectronJS
- Host: GitHub
- URL: https://github.com/shivamjoker/keymote
- Owner: ShivamJoker
- License: apache-2.0
- Created: 2020-03-03T03:29:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T08:53:59.000Z (over 3 years ago)
- Last Synced: 2024-05-03T03:17:56.042Z (about 2 years ago)
- Topics: electron, keyboard-simulator, remote-control, utilities
- Language: JavaScript
- Size: 1.46 MB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Key-Remote-Desktop
Keyboard simulator app made in ElectronJS
# Instructions for Developing Application [MAC/Linux]
1. Clone the repo
```
git clone https://github.com/ShivamJoker/Key-Remote-Desktop
```
2. Install the dependencies
```
npm install
// or use yarm
yarn
```
3. Run or Build application
```
npm start
//build
npm pack
```
# Instructions for Setting up Development Enviorment [Windows]
## Prerequisites
- Windows 10 / Server 2012 R2 or higher
- Visual Studio 2017 15.7.2 or higher - download VS 2019 Community Edition for free
- Python 2.7.10 or higher
- Node.JS
1. Clone the repo
```
git clone https://github.com/ShivamJoker/Key-Remote-Desktop
```
2. Install the dependencies
```
npm install --global --production windows-build-tools
npm install -g node-gyp
yarn add electron-rebuild --dev
npm install
// or use yarm
yarn
```
If you don't get QR code then try this fix:
*Note: Make sure you are using latest Node.JS version*
open main folder where index.js exist then open command prompt here.
```
cd node_modules/.bin
electron-rebuild.cmd --module-dir ../../
//go back to main directory
cd ../
cd ../
npm start
// ignore the warnings starting from (electron)
```
3. Run or Build application
```
npm start
//build
npm pack
```