New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nodexer

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodexer

Browse directory trees and view files in the browser.

  • 1.1.62
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

nodexer

npm David Travis (.com)

A directory indexer written in Node.

This is a highly customizable indexer with good support for mainly image and video files while also having most of the basic features of any other directory lister. It has a gallery mode, hoverable previews and persistent user-set settings like sorting and other small adjustments. It is also designed to have a slightly retro and simple feel to it which is why it does not use any flashy CSS or icon packs.

You can view a demo of the script here.

Please note that this is a very early version of this project, so it may contain a few bugs.

Install

NPM

npm install nodexer

Usage

Require Nodexer:

var nodexer = require('nodexer');

Basic initialization example:

var server = nodexer.run(3000, '/var/www/html/');

This will spin up a webserver on http://localhost:3000/ with the path set to /var/www/html/.

Another example. This time with a windows path and a few options set:

var server = nodexer.run(3000, 'E:/Downloads', {
	authentication : {
		users: {
			'username': 'password'
		}
	},
	gallery : {
		fit_content : true
	},
	style : {
		compact : true
	}
});

This will also start a webserver on http://localhost:3000/ with the path set to E:/Downloads. In this example it'll also enable a basic authentication system and a few other options options.

A documentation of the available options can be found here.

Development

Note: The development environment utilizes ES6.

Clone the repository and install the required npm packages:

git clone https://github.com/sixem/nodexer
cd nodexer
npm install

Create a run.js file with a simple initialization of the script:

var port = 3000, directory = '/var/www/html/';

require('./index.js').run(port, directory, {
	debug : true
});

Then start run.js through nodemon:

npm run dev

Compile

To compile the script run:

npm run compile

Hopefully everything looks OK. This will create a lib and a dist directory with the transpiled and minified files.

To use the compiled source, edit .env and change the environment from development to production:

NODE_ENV=production

Other Projects

This is a node version of the eyy-indexer which is written in PHP, so check that project out if you want something for PHP.

Disclaimer

As always, use this script at your own risk. There may exist bugs that i do not know of.

License

MIT License

Copyright (c) 2020 ему (sixem)

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.

Keywords

FAQs

Package last updated on 31 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc