Skip to content

librarianjs/local-storage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

LibrarianJS filesystem storage engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published