Skip to content

v0.14.1

Compare
Choose a tag to compare
@adamhalasz adamhalasz released this 03 Mar 01:19
· 4 commits to master since this release
  • Introducing $.download(path, filename) #67

Now you can do:

// Register a route that downloads the /image.png as logo.png
app.get('/', function($){
    $.download('./image.png', 'logo.png')
})