0.0.3 • Published 9 years ago

node-advpng v0.0.3

Weekly downloads
5
License
-
Repository
github
Last release
9 years ago

node-advpng

advpng的node包装

Build

travis build status

Install

npm install node-advpng

Example usage

var execFile = require('child_process').execFile;
var advpng = require('node-advpng').path;

execFile(advpng, ['--version'], function(err, stdout, stderr) {
    console.log('advpng version:', stdout.match(/\d\.\d*/)[0]);
});