admin管理员组文章数量:1318564
I would like to know how to get a certain key on the keyboard to be pressed via code on nodejs.
For instance, I want the f3 button to pressed once the following page is rendered:
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
// press key
});
module.exports = router;
I would like to know how to get a certain key on the keyboard to be pressed via code on nodejs.
For instance, I want the f3 button to pressed once the following page is rendered:
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
// press key
});
module.exports = router;
Share
Improve this question
asked Apr 10, 2017 at 12:17
code_legendcode_legend
3,28517 gold badges55 silver badges97 bronze badges
4
- Possible duplicate of nodejs how to read keystrokes from stdin – node_modules Commented Apr 10, 2017 at 12:20
- Take a look at stackoverflow./a/17473563/7707749, it might be what you search for. – King Reload Commented Apr 10, 2017 at 12:21
- I don't think this is possible. Certainly not with the server-side code that you're demonstrating. And while I've not done the research, I can't imagine that browser JS's sandbox would allow direct hardware simulation like that either. Why do you need F3 hit? What do you expect to happen? Are you assuming all puter F3 buttons do the same thing? – Paul Commented Apr 10, 2017 at 12:23
- 2 @codekid and King Reload> read the question. He is not trying to read keyboard input, he's trying to cause the F3 to be hit. – Paul Commented Apr 10, 2017 at 12:24
3 Answers
Reset to default 4Take a look at robotjs
, which can be used to generate keyboard events.
For instance, to "send" an F3 key press:
const robot = require('robotjs');
...
router.get('/', function(req, res, next) {
robot.keyTap('f3');
res.end();
});
Although it depends on which OS you're using if this is going to work as expected.
Not possible from server side. You can include a javascript script in your page which can trigger the event. If you are using jQuery.
var ev = jQuery.Event("keypress");
ev.ctrlKey = false;
ev.which = 37;
$("container").trigger(ev);
Is it possible to trigger a keyboard button with JavaScript?
You can simply use applescript in nodejs, and node-key-sender on other platform.
const os = require('os')
const childProcess = require('child_process')
const { promisify } = require('util')
const ks = require('node-key-sender')
function hitHotkey (key, modifier) {
if (os.type() === 'Darwin') {
if (modifier) {
return exec(`Script="tell app \\"System Events\\" to keystroke ${key} using ${modifier} down"
osascript -e "$Script"`)
} else {
return exec(`Script="tell app \\"System Events\\" to keystroke ${key}"
osascript -e "$Script"`)
}
} else {
if (modifier) {
return ks.sendCombination([modifier, key])
} else {
return ks.sendKey(key)
}
}
}
本文标签: javascriptHow to press a key using nodejsStack Overflow
版权声明:本文标题:javascript - How to press a key using nodejs? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742050077a2418019.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论