Coder Social home page Coder Social logo

node-filesaver's Introduction

node-filesaver

Manage collections of files easily with node.js

Build Status

Installation

Install with npm

$ npm install filesaver

Features

  • Add files avoiding duplicated names
  • Put files overwriting old ones if exists
  • Use safe file names

Example

var Filesaver = require( 'filesaver' );

var folders = {
	images: './images'
}

var filesaver = new Filesaver({ folders: folders, safenames: true });

filesaver.add( 'images', ./path/to/file.jpg, 'photo.jpg', function (err, data) {
    console.log( data );
    // => {filename: 'photo_2.jpg', filepath: './images/photo_2.jpg'}
});

Filesaver API

Filesaver( options )

Filesaver constructor.

Parameters:

  • options Object: folders and safenames

Options:

  • folders: Object with folder routes
  • safename: Boolean use safe name for files

Example:

var folders = {
images: './images',
books: './books'
}
var filesaver = new Filesaver({
folders: folders,
safenames: true
});

folder( name, path, callback )

Add a new folder

Parameters:

  • name String: name of new folder collection
  • path Object: path to its folder
  • callback Function: no signature callback

Example:

filesaver.folder( 'documents', './path/to/folder', function () {
// do something
});

put( folder, oldPath, newPath, callback )

Write or overwrite file

Parameters:

  • folder String: name of parent folder folder
  • oldPath String: path to origin file
  • newPath String: name of newPath file
  • callback Function: Signature: error, data. Data signature:{filename, filepath}

Example:

filesaver.put( 'images', '/path/temp/file.jpg', 'photo.jpg', function (err, data) {
console.log( data );
// ->
// filename: 'photo.jpg',
// filepath: './images/photo.jpg'
});

add( folder, oldPath, newPath, callback )

Write a file without overwriting anyone.

Parameters:

  • folder String: name of parent folder folder
  • oldPath String: path to origin file
  • newPath String: Optional: name of newPath file
  • callback Function: Optional: Signature: error, data. Data signature:{filename, filepath}

Example:

filesaver.add( 'images', '/path/temp/file.jpg', 'photo_1.jpg', function (err, data) {
console.log( data );
// ->
// filename: 'photo_2.jpg',
// filepath: './images/photo_2.jpg'
});

Tests

npm install && npm test

Build API docs

npm install && npm run build-docs




© 2014 jacoborus

Released under MIT License

node-filesaver's People

Contributors

jacoborus avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

node-filesaver's Issues

My official semver suggestion

If your package manager forces semver (e.g. npm) and you wish to upload my static-API date-versioned repos, use 1.0.YYYYMMDD as the semver[1]

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.