Use in JS applications
npm i -s everdevconst { consoleTerminal, runCommand } = require("everdev");
const path = require("path");
async function main() {
await runCommand(consoleTerminal, "sol compile", {
file: path.resolve(__dirname, "Hello.sol")
});
}
main();Last updated