CanJS
CanJS是一个JavaScript解释器,可以在JS中运行JS代码。
相关文章:
安装
git clone https://github.com/jrainlau/canjs.git
用法
直接在字符串中运行JS代码是可以的。
const Canjs = require ( './dist/index.js' )
new Canjs ( `
console.log('Hello World!')
` ) . run ( )
CanJS使用ES5标准库,但您也可以为其提供自定义变量:
const Canjs = require ( './dist/index.js'
1