Skip to content

Binary wrapper for neo-boa - Python compiler for the NEO Virtual Machine

License

Notifications You must be signed in to change notification settings

neo-one-suite/neo-one-boa

Repository files navigation

@neo-one/boa

Binary wrapper for neo-boa - Python compiler for the NEO Virtual Machine

OS X, Linux and Windows binaries are currently provided.

CLI

$ npm install --global @neo-one/boa
$ neo-one-boa sc.py sc.avm

API

$ npm install --save @neo-one/boa
const execFile = require('child_process').execFile;
const boa = require('@neo-one/boa');

execFile(boa, ['sc.py', 'sc.avm'], (err, stdout) => {
  console.log(stdout);
});

License

@neo-one/boa is MIT-licensed.