0.5.1 • Published 11 years ago

node-smushit v0.5.1

Weekly downloads
56
License
-
Repository
-
Last release
11 years ago

node-smushit

using smush.it service to optimize image(s) in node

How to use?

install by NPM

npm install node-smushit

use it in node

var smushit = require('node-smushit');
//smash a single file
smushit.smushit('images/need-to-smash.png');

//smash files
smushit.smushit(['file1', 'fiel2', ..]);

//smash images in directory
smushit.smushit('images-folder-path');

//smash images in directory or the child-directories with recursive
smushit.smushit('images-folder-path', {recursive: true});

use smushit in shell

//view help
smushit -h

//smash files or directory
smushit file1 file2 file3

//with recursive
smushit file1 file2 file3 -R