fivetwelve-cli-debug-driver
Advanced tools
Comparing version 0.1.0 to 0.2.0
@@ -25,3 +25,3 @@ import {screen, widget, helpers} from 'blessed'; | ||
// Render the screen. | ||
this.update(new Buffer(512)); | ||
this.update(Buffer.alloc(512, 0)); | ||
} | ||
@@ -28,0 +28,0 @@ |
{ | ||
"name": "fivetwelve-cli-debug-driver", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "fivetwelve-driver to help debugging. Renders the current state of the dmx-universes to the console.", | ||
@@ -10,3 +10,8 @@ "main": "index.js", | ||
}, | ||
"keywords": ["fivetwelve", "fivetwelve-driver", "dmx", "cli"], | ||
"keywords": [ | ||
"fivetwelve", | ||
"fivetwelve-driver", | ||
"dmx", | ||
"cli" | ||
], | ||
"author": "", | ||
@@ -13,0 +18,0 @@ "license": "ISC", |
@@ -5,2 +5,14 @@ fivetwelve-cli-debug-driver | ||
A driver to help debugging your applications. Will simply output the | ||
current channel-values of the universe into your terminal. | ||
current channel-values of the universe into your terminal. | ||
> **PLEASE NOTE** As all fivetwelve-modules, this module was written | ||
> in ES6 using modules-syntax. To consume this module, you will need | ||
> to configure your application accordingly. | ||
> | ||
> For example by using `babel-register` like this: | ||
> | ||
> ```javascript | ||
> require('babel-register')({ | ||
> presets: ['node6'], | ||
> ignore: /node_modules\/(?!fivetwelve)/ | ||
> }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2377
18