EverDev
Quick StartSDKEver platform
  • EverDev
  • Troubleshooting
  • Use in JS applications
  • Command line interface
    • Solidity
    • Solidity Compiler Driver
    • C++
    • Evernode SE
    • Network Tool
    • Signer Tool
    • Contract management
    • TestSuite4
    • DeBrowser
  • Guides
    • Quick Start
    • Create controller
    • View controller info
  • Links
    • everdev repository
    • ever-sdk repository
Powered by GitBook
On this page

Was this helpful?

Use in JS applications

You can easily use everdev as a regular npm package in your JS applications.

Just add dependency into you package.json:

npm i -s everdev

And then run any command from everdev:

const { consoleTerminal, runCommand } = require("everdev");
const path = require("path");

async function main() {
    await runCommand(consoleTerminal, "sol compile", {
        file: path.resolve(__dirname, "Hello.sol")
    });
}

main();
PreviousTroubleshootingNextSolidity

Last updated 1 year ago

Was this helpful?