Skip to content

nicolashardy/thumbor-js-client

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

thumbor-js-client A pure JS client for thumbor

Install :

  • bower install
  • include bower_components/jsSHA/src/sha.js
  • include src/thumbor-js-client.js

#Initiate an instance of ThumborJsClient

 var hostname = "http://yourhostname-thumbor.com";
 var secret = "y0uRs3cr3tKey";
 var filename = "link-to-your-image.jpg"

// Create instance
 var thumborClient = ThumborJsClient.create(hostname, secret);

 // Add fullFitIn command
 thumborClient.fullFitIn(fullFitInWidth, fullFitInHeight);

 //Get full URL
 thumborClient.url(filename);

About

A pure JS client for thumbor

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 52.6%
  • HTML 47.4%