标签: node.js v8
我需要执行一个在其调用范围内运行的脚本。是否可以使用本机代码?
var a = 5; function test () { var b = 7; somenativelib(); // I want to use 'a' and 'b' variables in native code }