GithubHelp home page GithubHelp logo

matthieugayon / alleup Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tih-ra/alleup

0.0 2.0 0.0 128 KB

Flexible way to resize and upload images to Amazon S3 or file system storages for Node.js

JavaScript 100.00%

alleup's Introduction

Alleup

Flexible way to resize and upload images to Amazon S3 or file system storages for Node.js. Possible to add different versions of the same file in cropped or resized variant.

Installation

$ npm install alleup

Quick Start

  1. You need to create alleup configuration file with image variants and your storages Example:

    {
    	"variants": {
    		"resize": {
    			"mini" : "300x200",
    			"preview": "800x600"
    		},
    		"crop": {
    			"thumb": "200x200"
    		}
    	},
    
    	"storage": {
    		"aws": {
    			"key" : "AWS_KEY",
    			"secret" : "AWS_SECRET",
    			"bucket" : "AWS_BUCKET"
    		},
    		"dir": {
    			"path" : "./public/images/" 
    		}
    	}
    }

Example config with scopes (only from version 0.1.0):

{
	"variants": {
		"projects": { //projects is scope
		  "resize": {
			  "mini" : "300x200",
			  "preview": "800x600"
		  },
		  "crop": {
			 "thumb": "200x200"
		  }
		},
		
		"gallery": { //gallery is scope
		   "crop": {
			"thumb": "100x100"
		   }	
		}
	},

	"storage": {
		"aws": {
			"key" : "AWS_KEY",
			"secret" : "AWS_SECRET",
			"bucket" : "AWS_BUCKET"
		},
		"dir": {
			"path" : "./public/images/" 
		}
	}
}
  1. Now you can use Alleup

    var  Alleup = require('alleup');
    var alleup = new Alleup({storage : "aws", config_file: "path_to_alleup_config.json"})

You can use storage: 'aws' for store files on Amazon S3 or storage: 'dir' for store files in filesystem

UPLOAD, URL and DELETE

  1. Upload example:

    app.get('/upload_form', function(req, res) {
      res.writeHead(200, {'content-type': 'text/html'});
        res.end(
          '<form action="/upload" enctype="multipart/form-data" method="post">'+
            '<input type="text" name="title"><br>'+
            '<input type="file" name="upload" multiple="multiple"><br>'+
            '<input type="submit" value="Upload">'+
          '</form>'
        );
    
    });
    
    app.post('/upload',  function(req, res) {
     // Without Scopes
      alleup.upload(req, res, function(err, file, res){
    
          console.log("FILE UPLOADED: " + file);
          // THIS YOU CAN SAVE FILE TO DATABASE FOR EXAMPLE
          res.end();
      });
    
     //With Scope `projects` (look at example of configuration file)
     alleup.upload(req, res, function(err, file, res){
    
         console.log("FILE UPLOADED: " + file);
         // THIS YOU CAN SAVE FILE TO DATABASE FOR EXAMPLE
         res.end();
     }, 'projects');
     
    });
  2. Remove uploaded file example:

    // Without Scopes
    app.get('/delete',  function(req, res) {
      alleup.remove('1322506647.jpg', function(err) {
    
          // THIS YOU CAN DELETE FILE FROM DATABASE FOR EXAMPLE
          res.end();
      });
    
    // With Scope `projects` (look at example of configuration file)
    app.get('/delete',  function(req, res) {
      alleup.remove('1322506647.jpg', function(err) {
    
          // THIS YOU CAN DELETE FILE FROM DATABASE FOR EXAMPLE
          res.end();
      }, 'projects'); 
    });
  3. Get file url example:

    alleup.url(file, variant);

file - The name of the file you uploaded, saved for example in database (345621345.jpg), variant - one of your image variants names from alleup_config.json

Contribution

Pull requests are welcome!!!

License

(The MIT License)

Copyright (c) 2011 Andriy Bazyuta <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Author

Andriy Bazyuta

alleup's People

Contributors

tih-ra avatar jfhbrook avatar brianjd avatar

Watchers

James Cloos avatar matthieu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.