Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/littledivy/voicecontroljs
Voice-driven desktop automation. :rocket:
https://github.com/littledivy/voicecontroljs
js kue react robotjs socket-io ts
Last synced: 2 months ago
JSON representation
Voice-driven desktop automation. :rocket:
- Host: GitHub
- URL: https://github.com/littledivy/voicecontroljs
- Owner: littledivy
- License: mit
- Archived: true
- Created: 2020-05-10T17:39:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T05:42:28.000Z (about 2 years ago)
- Last Synced: 2024-10-04T00:26:56.945Z (3 months ago)
- Topics: js, kue, react, robotjs, socket-io, ts
- Language: TypeScript
- Homepage:
- Size: 2.31 MB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VoiceControlJS
Voice-driven automation for your computer.
## Features
- [x] Type a string using the `type` command.
- [x] Simulate key press using the `press` command.
- [x] Move cursor using the `mouse` command.
- [x] Simulate a full screen capture using the `capture` command.
- [x] Job priority using Kue.
- [x] Dark theme for better UX.
- [x] Audio visualizer (experimental).
- [ ] Move mouse to desired coordinates.
- [ ] Simulate mouse click using the `click` command....and much more!
## Requirements
* Google Chrome (with SpeechRecognition support)
* Node.js
* Yarn / NPM (yarn is preferred)
* Other requirements for robotjsOnce this is satisfied we can move on to installing it.
## Installing
Clone the repo and installing dependencies.
```sh
$ git clone https://github.com/divy-work/voicecontroljs
$ cd voicecontroljs
$ yarn # or npm i
```We can now perform the build.
## Building
```sh
$ yarn build # or npm run build
$ cd server & yarn build
```
Great! Let's run the server## Running
Assuming you are in the root directory of the repo.
```sh
$ node ./server/dist/index.js
# Yay! Now open http://localhost:3000
```Open http://localhost:3000 and enjoy!
## Contributing
Contribution and feature requests from anyone is greatly appreciated.
* Fork the repo.
* Make changes.
* Commit them.
* Open a PR.
* Ping me :)## License
MIT License
Copyright (c) 2020 Divy Srivastava
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.