generator-fluxible
Getting Started
npm install -g yo
To install generator-fluxible from npm, run:
npm install -g generator-fluxible
Finally, initiate the generator:
yo fluxible
Debugging
Fluxible uses debug to expose debugging information on the server and client.
Server
Start the application with the DEBUG
environment variable: DEBUG=* grunt
.
Client
fluxibleDebug
is exposed to the window
object to manage debugging. You can enable it via the browser console: fluxibleDebug.enable('*');
then refresh the page. To disable, type the following: fluxibleDebug.disable();
.