@rearc/noop-discovery

Noop Application Discovery


Keywords
logging, json, noop
License
GPL-2.0+
Install
npm install @rearc/noop-discovery@1.0.37

Documentation

noop-discovery

Noop application source code discovery library. This library is hosted publicly on NPM.

The library exports a single function with three parameters.

  • rootPath {string} - path to scan for Noop App
  • watch {boolean} - whether or not to emit events on file changes
  • done {callback} - yields {err} and {app}

Quickstart

npm install @rearc/noop-discovery --save
const discovery = require('@rearc/noop-discovery')

discovery('/project/root', true, (err, app) => {
  if (err) console.log('bort', err)
  app.on('manifestChange', (manifestFile) => {})
  app.on('componentChange', (componentName) => {})
})