loopback-glue

1.0.1 • Public • Published

loopback-glue


NPM

NPM

Build status

Codecov

David

Booting utility to glue multiple loopback projects together. This module lets you merge independent loopback projects together and deploy as one loopback project.

There are two ways in which subapps can be merged:

Option 1: Read boot configurations from subapps and merge them as the boot configuration for a new loopback project This option is better when you just want to pull models and datasources from subapps. You cant pull and merge middleware or component configuration.

Option 2: Boot all loopback projects independently and then mount them on a new loopback project This option is better when you want to maintain request lifecycle separatly for each subapp.

Option 1: Read boot configurations from subapps and merge them as the boot configuration for a new loopback project

To use the module:

  1. Load loopback-glue in place of loopback-boot

    var glue = require('loopback-glue'); //var boot = require('loopback-boot');
  2. Create an options object for glue. The options object inherits the loopback-boot option object. On top of the original option object we are adding a new attribute called subapps.

    The "subapps" attribute is an array of glue based loopback projects. Each element of the array should have the loopback project name as the key, followed by the value as the glue option flags.

    var options = {
      "appRootDir" : __dirname,
      "subapps" : [
        {
          "name-api" : {
            "loadModels" : true,
            "loadDatasources" : true
          }
        } , {
          "address-api" : {
            "loadModels" : true,
            "loadDatasources" : false
          }
        }
      ]
    };
  3. Replace boot loading by the following code:

    // Bootstrap the application, configure models, datasources and middleware.
    // Sub-apps like REST API are mounted via boot scripts.
    glue(app, options, function(err,instructions) {
      if (err) throw err;
     
      // start the server if $ node server.js
      if (require.main === module)
        app.start();
      else {
        // in case its not the parent app, exporting instructions to load from parent
        app.glue = {'instructions' : instructions, glueOption : options};
      }
     
    });

Option 2: Boot all loopback projects independently and then mount them on a new loopback project

To use the module:

  1. Load loopback-glue in place of loopback-boot

    var glue = require('loopback-glue'); //var boot = require('loopback-boot');
  2. Create an options object for glue. The option object inherits the loopback-boot option object. On top of the original option object, add a new attribute called subapps.

    The "subapps" attribute is an array representing a loopback project. Each element of the array should have the loopback project name, prefix.

    var options = {
      "appRootDir" : __dirname,
      "subapps" : [
        {
          "name" : "app-name",
          "app" : <object>,//[loopback-app-object], [optional]
          "mountPath" : "api1" //this prefix will be added to the childApp Url's []
        }
      ]
    };

    name: project name of the subapp app: Booted loopback project application instance. If this parameter is not provided than glue will try loading it from node_modules. While loading it will use the loopback project names provided as "name" mountPath: The URI where the loopback project will be mounted. If this parameter is not provided, glue defaults it to "api" with an index (ie. api1, api2)

  3. Replace boot loading by the following code:

    // Sub-apps like REST API are mounted via boot scripts.
    glue(app, options, function(err) {
      if (err) throw err;
     
      // start the server if $ node server.js
      if (require.main === module)
        app.start();
     
    });
  4. Refer example loopback-glue-example

See Also

Readme

Keywords

none

Package Sidebar

Install

npm i loopback-glue

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • lahirs2
  • mennu
  • pbhadauria2000