rich-filemanager-node

0.1.5 • Public • Published

Rich Filemanager - Node Connector

This package is a NodeJS connector for Rich File Manager. It is implemented as an api, so you can use it on a seperate server from your front-end.

Installation

npm install rich-filemanager-node --save

Usage

This connector is implemented as a middleware for Expressjs. The code sample is an express app that implements the connector

const express = require( "express" );
const filemanager = require( "rich-filemanager-node" );
const config = "/path/to/filemanager.config.json"; //Change this to the actual location of your config file
var app = express();
 
//Filemanager route
app.use( '/filemanager', filemanager( "/path/to/dir", config ) );
// '/filemanager' is the connector url. 
// Don't forget to set it in the api.connectorUrl of `filemanager.config.json` for the frontend
 
//Listen for requests
const port = process.env.PORT || 9000;
app.listen( port, function(){
    console.log ( 'App listening on port ' + port );
})

Note: config can be an object or a file path

Important

When using this connector in your project, the filemanager route must come before any body-parsing ( multer, body-parser, busboy, etc ) routes;

API functions not yet implemented

  1. seekfolder
  2. summarize
  3. extract

Package Sidebar

Install

npm i rich-filemanager-node

Weekly Downloads

3

Version

0.1.5

License

MIT

Unpacked Size

16.9 kB

Total Files

4

Last publish

Collaborators

  • eldekyfin