npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

loopback-glue

v1.0.1

Published

Booting utility to glue multiple loopback projects together

Downloads

17

Readme

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