Commit c4432462 authored by Ahmad Nemati's avatar Ahmad Nemati

init

parents
Pipeline #61 canceled with stages
let install=require('./steps/install')
async function run() {
await install
}
\ No newline at end of file
const ioHook = require('iohook');
ioHook.on("mousedown",function(msg){console.log(msg);});
ioHook.on("keypress",function(msg){console.log(msg);});
ioHook.on("keydown",function(msg){console.log(msg);});
ioHook.on("keyup",function(msg){console.log(msg);});
ioHook.on("mouseclick",function(msg){console.log(msg)});
ioHook.on("mousewheel",function(msg){console.log(msg)});
ioHook.on("mousemove",function(msg){console.log(msg)});
ioHook.on("mousedrag",function(msg){console.log(msg)});
ioHook.start();
\ No newline at end of file
{
"name": "btc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"binance-api-node": "^0.9.18",
"bufferutil": "^4.0.1",
"iohook": "^0.6.5",
"node-binance-api": "^0.10.7",
"open": "^7.0.4",
"robotjs": "^0.6.0",
"tesseract.js": "^2.1.1",
"utf-8-validate": "^5.0.2"
}
}
var robot = require("robotjs");
run()
async function run()
{
await robot.moveMouse()
}
module.exports =
{
run:run
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment