1.0.4 • Published 9 years ago

librarian-local-storage v1.0.4

Weekly downloads
8
License
ISC
Repository
github
Last release
9 years ago

Librarian Local Storage

Installation

$ npm install librarian-local-storage

Usage

var express = require( 'express' )
var librarian = require( 'librarian' )
var LocalStorage = require( 'librarian-local-storage' )
var storage = new LocalStorage({
  // Where are these images stored?
  files: '/uploads', // optional, defaults to $PWD/files
})

var app = express()
app.use( '/files', librarian({
    storageEngine: storage
}) )

app.listen( 8888, function(){
    console.log( 'app listening' )
})

Note

LocalStorage is the default storage engine used for librarian out of the box. If you do not specify otherwise, a directory called 'files' will be created and used in the the current working directory.

Note

LocalStorage will attempt to create the directory given, but will continue whether this succeeds or fails. If you need special permissions on this directory, ensure it is created ahead of time.

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago