84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
学校的课程设计中要制作一个ide用来编辑c/c++,有一个功能是编译,就是我点一下就弹出控制台显示编译的结果,请问node有调用c++编译的接口吗,怎么实现这个功能?
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
你可能需要的是这个。https://nodejs.org/api/child_process.html
const exec = require('child_process').exec; let server = exec('g++ -o hello hello.cpp', function(err, stdout, stderr) { if (err) console.error(stderr); console.log(stdout); }); server.stdout.on('data', function(data) { console.log(data); }); // process.on('exit', function() { // server.kill(); // });
你可能需要的是这个。https://nodejs.org/api/child_process.html