tinypng2

0.0.3 • Public • Published

tinypng tinypng

tinypng in node.js

Installation

$ npm install tinypng2

Example

const tinypng = require('tinypng2')({
  key: '-- YOUR LICENSE KEY HERE --'
});
 
(async () => {
 
  const output = await tinypng('/tmp/input.png');
  console.log(output.url);
  await output.save('/tmp/output.png');
  // resize - fit
  const fit = await output.fit(150, 100);
  await fit.save('/tmp/output-fit.png');
  
})();

CLI Usage

~$ tinypng input.png output.png

Contributing

  • Fork this Repo first
  • Clone your Repo
  • Install dependencies by $ npm install
  • Checkout a feature branch
  • Feel free to add your features
  • Make sure your features are fully tested
  • Publish your local branch, Open a pull request
  • Enjoy hacking <3

MIT

This work is licensed under the MIT license.


/tinypng2/

    Package Sidebar

    Install

    npm i tinypng2

    Weekly Downloads

    5

    Version

    0.0.3

    License

    MIT

    Unpacked Size

    11.1 kB

    Total Files

    8

    Last publish

    Collaborators

    • song940