Socket
Socket
Sign inDemoInstall

truffle-config

Package Overview
Dependencies
314
Maintainers
8
Versions
43
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    truffle-config

Utility for interacting with truffle-config.js files


Version published
Maintainers
8
Created

Readme

Source

truffle-config

Utility for interacting with truffle-config.js files

Usage

const TruffleConfig = require("truffle-config");
Instantiate default TruffleConfig object
const newConfig = TruffleConfig.default();
Instantiate custom TruffleConfig object
const customConfig = new TruffleConfig("/truffleDirPath", "/currentWorkingDirPath", networkObj);
Config.detect()
// find config file & return new TruffleConfig object with config file settings (cwd)
const truffleConfig = TruffleConfig.detect();

// find config file & return new TruffleConfig object from custom working dir
const truffleConfig = TruffleConfig.detect({ workingDirectory: "./some/Path" });

// find & return new TruffleConfig object from custom named config
const customTruffleConfig = TruffleConfig.detect({}, "./customConfig.js");

Keywords

FAQs

Last updated on 29 Aug 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc