Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

list-contents

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

list-contents

Returns a list of paths to the subfolders and subfiles of the specified location.

  • 2.0.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
282
decreased by-33.18%
Maintainers
1
Weekly downloads
 
Created
Source

Description

list-contents is a module that returns a list of paths to the subfolders and subfiles of the specified location.

  • Any bugs found? Give me to know on dev.rafalko@gmail.com or on GitHub
  • Also check out structure-dirs package that creates the folders and files contents according to the given [Array] structure.

Installation

npm install list-contents

const list = require('list-contents');

Usage

list(path,callback)

path [String]
  • It should indicate the path to the chosen directory, which subfolders and subfiles should be listed
callback [Function]
  • the [Object] argument is passed through callback function. It has 4 properties:
    • error [Boolean|Error] null if the path is valid, otherwise [Error] object
    • dirs [Array] The list of all subfolders' paths of the specified path argument
    • files [Array] The list of all subfiles' paths of the specified path argument
    • path [String] The path that was given as path parameter
const list = require('list-contents');

list("./dist",(o)=>{
  if(o.error) throw o.error;
  console.log('Folders: ', o.dirs);
  console.log('Files: ', o.files);
});

Samples

Assuming that "./dist" path contains the following subfolders and subfiles:

dist
 ├ scripts
 │  ├ index.js
 │  └ ajax.js
 ├ styles
 │  ├ css   
 │  │  ├ layout.css
 │  │  └ media.css
 │  └ scss
 │     └ mixins.scss
 └ templates
    ├ main.html
    ├ menubar.html
    ├ login.html
    └ contact.html

the module will pass the following object through the callback function:

{
  error: null,
  path: "./dist",
  dirs: [
    'scripts',
    'templates',
    'styles',
    'styles/css',
    'styles/scss'
  ],
  files: [
    'scripts/ajax.js',
    'scripts/index.js',
    'templates/contact.html',
    'templates/login.html',
    'templates/main.html',
    'templates/menubar.html',
    'styles/css/layout.css',
    'styles/css/media.css',
    'styles/scss/mixins.scss'
  ]
}

Keywords

FAQs

Package last updated on 25 Sep 2017

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