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 Appwatch
{boolean} - whether or not to emit events on file changesdone
{callback} - yields {err} and {app}
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) => {})
})