Configure

Server.Modules. Configure

# new Configure(coreObj) → {Server.Modules.Configure}

This is the Configure Module of the Blackrock Application Server. It provides the required tools to manage the application server's configuration, including full and partial updates, and live reload of config mid-execution. There are currently no accessible methods exposed on this module. PLEASE NOTE: This module is undergoing development and is not yet functional.

Parameters:
Name Type Description
coreObj Server.Modules.Core

The Core Module Singleton

Author:
  • Darren Smith
License:
  • Licensed under the LGPL license.
Returns:

module - The Configure Module Singleton

Type
Server.Modules.Configure
Examples
// For Blackrock As A Dependency Or Internally:
const configureModule = core.module('configure');
// From App Controllers:
const configureModule = req.core.module('configure');

Extends