终于nodejs可以和C语言混写啦!!!!!!!!(不是C扩展,就是混写)
发布于 4 个月前 作者 zy445566 2397 次浏览 来自 分享

首先

我们要先全局安装node-gyp,node-gyp具体教程移步:https://github.com/nodejs/node-gyp#installation 已安装过的可以略过

其次

进入自己的项目文件夹,例如我项目文件夹取名为c-jit-test

npm install c-jit

#然后我们的node就可以开始混写c了,直接上个相加的例子吧 语法可参考(NAN语法):https://github.com/nodejs/node-addon-examples

const CJit = require("c-jit");
const path = require("path");
let cJit  = new CJit();

// run by c code sync
let funcByrunSync = cJit.runSync(`
  if (info.Length() < 2) {
    Nan::ThrowTypeError("Wrong number of arguments");
    return;
  }

  if (!info[0]->IsNumber() || !info[1]->IsNumber()) {
    Nan::ThrowTypeError("Wrong arguments");
    return;
  }

  double arg0 = info[0]->NumberValue();
  double arg1 = info[1]->NumberValue();
  v8::Local<v8::Number> num = Nan::New(arg0 + arg1);

  info.GetReturnValue().Set(num);
`);
console.log("This should be eight(by run sync):"+funcByrunSync(3,5));

运行我们的js文件,你会发现第一次它会进行编译

221.png

但是第二次运行的时候

由于c语言代码已经编译完成速度会很快(如下) 222.png

#当然混写可能难看了些(我们可以直接先写到文件中,再引用文件即可)

//run by file sync
let funcByfileSync = cJit.runByFileSync(path.join(__dirname,'test.cc'));
console.log("This should be twelve(by file sync):"+funcByfileSync(6,6));

另外以上是同步方法,还可以异步实现(异步部分,大家有兴趣可以查看)

	欢迎点星和push
	https://github.com/zy445566/node-c-jit#example
6 回复

👍👍👍

来自酷炫的 CNodeMD

@dbit-xia 当然这是伪jit,不能跟随代码自动优化,所以想要追求至强性能就要保证算法优良 不过目前写了几个小例子,C的速度确实一流,哈哈😄😄😄

@fightAndLearn 谢谢,再补个helloworld吧,哈哈

const CJit = require("c-jit");
const path = require("path");
let cJit  = new CJit();


// run by c code sync
let hello = cJit.runSync(`
  char name[100];
  scanf("%s",name);
  printf("hello %s\\n",name); 
`);
console.log("\r\n\r\n\r\n\r\n");
console.log("---------maybe compiling,maybe compiled------------------");
console.log("input your name,please:");
hello();

可惜 C 忘了差不多了,只用来写算法题

回到顶部