npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

serve-lindex

v1.8.5

Published

Serve long directory listings in JSON and plain text

Downloads

5

Readme

serve-lindex

NPM Version NPM Downloads

Serves pages that contain directory listings for a given path.

Install

This is a Node.js module available through the npm registry. Installation is done using the npm install command:

$ npm install serve-lindex

API

var serveIndex = require('serve-lindex')

serveLindex(path, options)

Returns middlware that serves an index of the directory in the given path.

The path is based off the req.url value, so a req.url of '/some/dir with a path of 'public' will look at 'public/some/dir'. If you are using something like express, you can change the URL "base" with app.use (see the express example).

Options

Serve index accepts these properties in the options object.

filter

Apply this filter function to files. Defaults to false. The filter function is called for each file, with the signature filter(filename, index, files, dir) where filename is the name of the file, index is the array index, files is the array of files and dir is the absolute path the file is located (and thus, the directory the listing is for).

hidden

Display hidden (dot) files. Defaults to false.

icons

Display icons. Defaults to false.

stylesheet

Optional path to a CSS stylesheet. Defaults to a built-in stylesheet.

template

Optional path to an HTML template or a function that will render a HTML string. Defaults to a built-in template.

When given a string, the string is used as a file path to load and then the following tokens are replaced in templates:

  • {directory} with the name of the directory.
  • {files} with the HTML of an unordered list of file links.
  • {linked-path} with the HTML of a link to the directory.
  • {style} with the specified stylesheet and embedded images.

When given as a function, the function is called as template(locals, callback) and it needs to invoke callback(error, htmlString). The following are the provided locals:

  • directory is the directory being displayed (where / is the root).
  • displayIcons is a Boolean for if icons should be rendered or not.
  • fileList is a sorted array of files in the directory. The array contains objects with the following properties:
    • name is the relative name for the file.
    • stat is a fs.Stats object for the file.
  • path is the full filesystem path to directory.
  • style is the default stylesheet or the contents of the stylesheet option.
  • viewName is the view name provided by the view option.
long

This is a Boolean to add richer information in plain text and JSON responses. Defualts to false.

view

Display mode. tiles and details are available. Defaults to tiles.

Examples

Serve directory indexes with vanilla node.js http server

var finalhandler = require('finalhandler')
var http = require('http')
var serveLindex = require('serve-lindex')
var serveStatic = require('serve-static')

// Serve directory indexes for public/ftp folder (with icons)
var index = serveLindex('public/ftp', {'dotfiles': 'ignore', 'long': true})

// Serve up public/ftp folder files
var serve = serveStatic('public/ftp')

// Create server
var server = http.createServer(function onRequest(req, res){
  var done = finalhandler(req, res)
  serve(req, res, function onNext(err) {
    if (err) return done(err)
    index(req, res, done)
  })
})

// Listen
server.listen(3000)

Serve directory indexes with express

var express    = require('express')
var serveLindex = require('serve-lindex')

var app = express()

// Serve URLs like /ftp/thing as public/ftp/thing
app.use('/ftp', serveLindex('public/ftp', {'dotfiles': 'ignore', 'long': true}))
app.listen()

JSON response with long set

When a request is made with the header set to accept JSON, for example:

Request Header, Accept: application/json

The middleware responds with a JSON format response, if the long flag is set to true then you will get a response similar to the example below:

[{"dev":50,"mode":16877,"nlink":2,"uid":0,"gid":0,"rdev":0,"blksize":4096,"ino":127625,"size":4096,"blocks":8,"atime":"2017-04-11T01:38:06.168Z","mtime":"2017-04-03T18:20:14.000Z","ctime":"2017-04-11T01:38:06.118Z","birthtime":"2017-04-11T01:38:06.118Z","name":"99 Icons","ext":"","path":"/","type":"dir"},
{"dev":2049,"mode":33261,"nlink":1,"uid":0,"gid":0,"rdev":0,"blksize":4096,"ino":1184500,"size":15701,"blocks":32,"atime":"2013-03-28T01:55:32.000Z","mtime":"2013-03-28T01:55:32.000Z","ctime":"2017-04-11T01:38:05.829Z","birthtime":"2017-04-11T01:38:05.829Z","name":"CHANGELOG.txt","ext":".txt","path":"/","type":"file"}]

License

MIT. The Silk icons are created by/copyright of FAMFAMFAM.