1.0.1 • Published 8 years ago

libpixel v1.0.1

Weekly downloads
25
License
MIT
Repository
github
Last release
8 years ago

LibPixel

Build Status

JavaScript library to generate and sign LibPixel URLs.

Install

$ npm install libpixel

Usage

Start by requiring the module and creating an instance of the client.

var LibPixel = require("libpixel");
var libpx = new LibPixel({ host: "test.libpx.com" });

In addition to host, the following options are supported:

  • secret: Auth secret for your LibPixel account. Required for signing requests.
  • https: Generate HTTPS URLs. Default is false.

Sign URLs

You can sign an existing URL using the sign function:

var url = libpx.sign("http://test.libpx.com/images/1.jpg?width=400");

Generate URLs

You can also generate and sign URLs at the same time with the url function:

var url = libpx.url("/images/1.jpg", { height: 400, blur: 20, saturation: -80 });

License

MIT

1.0.1

8 years ago

1.0.0

9 years ago