Skip to content
lubelski edited this page Nov 16, 2014 · 1 revision

Create a basic app

pipeline = require 'pipeline'

PipeCleaner = pipeline.createApp()

Enable debug mode on certain objects on the app

PipeCleaner = require 'pipeline'

PipeCleaner = pipeline.createApp
  debug: 
    actions: ['actionKey']
    stores: ['storeKey']
    adaptors: ['adaptorKey']
  views: true

App Object

The App object now has some methods available:

PipeCleaner.createAction()
PipeCleaner.createStore()
PipeCleaner.createAdaptor()

and if you enabled views:

PipeCleaner.createView()
Clone this wiki locally