Socket
Book a DemoInstallSign in
Socket

parse-apache-directory-index

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse-apache-directory-index

Parse an HTML Apache directory index

latest
Source
npmnpm
Version
4.0.0
Version published
Maintainers
1
Created
Source

parse-apache-directory-index

test npm version

Parse an HTML Apache directory index.

Usage

const parse = require('parse-apache-directory-index');

console.log(parse(`
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  <html>
   <head>
     <title>Index of /foo/bar</title>
      </head>
       <body>
       <h1>Index of /foo/bar</h1>
       <table><tr><th><img src="/icons/blank.gif" alt="[ICO]"></th><th><a href="?C=N;O=D">Name</a></th><th><a href="?C=M;O=A">Last modified</a></th><th><a href="?C=S;O=A">Size</a></th><th><a href="?C=D;O=A">Description</a></th></tr><tr><th colspan="5"><hr></th></tr>
       <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="beep/">beep/</a>           </td><td align="right">25-May-2016 11:53  </td><td align="right">  - </td><td>&nbsp;</td></tr>
       <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="boop20160518/">boop20160518/</a>        </td><td align="right">19-May-2016 17:57  </td><td align="right">  - </td><td>&nbsp;</td></tr>
       <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="jazz20160518/">jazz20160518/</a>         </td><td align="right">19-May-2016 19:04  </td><td align="right">  - </td><td>&nbsp;</td></tr>
       <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="punk20160518/">punk20160518/</a>    </td><td align="right">19-May-2016 17:47  </td><td align="right">  - </td><td>&nbsp;</td></tr>
       <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="space20160518/">space20160518/</a>       </td><td align="right">19-May-2016 19:03  </td><td align="right">  - </td><td>&nbsp;</td></tr>
       <tr><th colspan="5"><hr></th></tr>
       </table>
       </body></html>
       `));
$ node example.js
{ dir: '/foo/bar',
  files:
   [ { type: 'directory',
       name: 'beep',
       path: '/foo/bar/beep/',
       lastModified: 2016-05-25T09:53:00.000Z,
       size: null,
       description: ' ' },
     { type: 'directory',
       name: 'boop20160518',
       path: '/foo/bar/boop20160518/',
       lastModified: 2016-05-19T15:57:00.000Z,
       size: null,
       description: ' ' },
     { type: 'directory',
       name: 'jazz20160518',
       path: '/foo/bar/jazz20160518/',
       lastModified: 2016-05-19T17:04:00.000Z,
       size: null,
       description: ' ' },
     { type: 'directory',
       name: 'punk20160518',
       path: '/foo/bar/punk20160518/',
       lastModified: 2016-05-19T15:47:00.000Z,
       size: null,
       description: ' ' },
     { type: 'directory',
       name: 'space20160518',
       path: '/foo/bar/space20160518/',
       lastModified: 2016-05-19T17:03:00.000Z,
       size: null,
       description: ' ' } ] }

License

MIT

FAQs

Package last updated on 12 May 2023

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