LSFND is an abbreviation for list (ls) files (f) and (n) directories (d), a lightweight Node.js library designed to make listing files and directories more convenient. It offers an efficient and simple way to explore through your directory structures and retrieves the names of files and/or directories leveraging a configurable options to modify the listing behavior, such as recursive searches and regular expression filters.
This library's primary benefit is that every implemented API runs asynchronously, guaranteeing that they will NEVER disrupt the execution of any other processes.
Important
Currently this library only focus on CommonJS (CJS) and ECMAScript Modules (ESM).
As of version 1.0.0, this library has supported TypeScript projects with various
module types (i.e., node16
, es6
, and many more). Previously, it was only supports
TypeScript projects with module type of commonjs
. All type declarations in this
library also has been enhanced to more robust and strict, thus improving type safety.
async function ls(
dirpath: StringPath | URL,
options?: LsOptions | RegExp | undefined,
type?: LsTypes | undefined
): Promise<LsResult>
The ls
function is an asynchronous function that retrieves a listing of files
and/or directories within a specified directory path. It offers powerful customizable
additional options to configures the listing behavior (see LsOptions
),
filtering using regular expression and specify the type of returned results (i.e.,
regular files or directories, or includes both).
-
dirpath
: {StringPath
|URL
}
The absolute or relative path to the directory you want to list. It can be a string path or a file URL path (either a URL string or aURL
object) with'file:'
protocol. -
options
: {LsOptions
|RegExp
|undefined
} (nullable, optional)
An optional regular expression or object that configures the listing behavior. By supplying a regular expression to thematch
andexclude
options, you may filter the file or directory names. You can also enable therecursive
option (i.e., set it totrue
) to enable the ability to recursively traverse subdirectories. If passed with aRegExp
object, then it only supplied thematch
option and the rest options will uses their default values. SeeLsOptions
for further information in detail. -
type
: {LsTypes
|undefined
} (nullable, optional)
An optional parameter that specifies the type of entries you want to include in the results. You can pass0
(zero) as value which will be interpreted as default behavior (i.e., include both regular files type and directories type). Refer tolsTypes
to see all supported types.
Returns a promise that resolves to an array of string containing the entries result.
It can be null
if an error occurred while listing a directory, or returns a
promise with an empty array if any files and directories doesn't match with the
specified filter options.
Note
💡 Tip: You can combine options for more granular control. For example, you can list directories and/or files recursively while filtering by either specific extensions or names.
Example Usage (CJS)
const { ls, lsTypes } = require('lsfnd');
(async () => {
// List all files and directories in the current directory
const allFiles = await ls('.');
console.log(allFiles);
// List only JavaScript files in the current directory recursively
const jsFiles = await ls('.', {
recursive: true,
match: /\.js$/
}, lsTypes.LS_F);
console.log(jsFiles);
})();
Example Usage (ESM)
import { ls, lsTypes } from 'lsfnd';
// List all files and directories in the current directory
const allFiles = await ls('.');
console.log(allFiles);
// List only JavaScript files in the current directory recursively
const jsFiles = await ls('.', {
recursive: true,
match: /\.js$/
}, lsTypes.LS_F);
console.log(jsFiles);
async function lsFiles(
dirpath: StringPath | URL,
options?: LsOptions | RegExp | undefined
): Promise<LsResult>
An asynchronous function that retrieves a listing of files within a specified
directory path. This function behaves the same as ls
function,
but this function only lists and retrieves the regular files type (i.e., excluding
any directories type).
This function is an alias for:
// It uses LS_F to filter only the regular file type ls(dirpath, options, lsTypes.LS_F);
-
dirpath
: {StringPath
|URL
}
The absolute or relative path to the directory you want to list. It can be a string path or a file URL path (either a URL string or aURL
object) with'file:'
protocol. -
options
: {LsOptions
|RegExp
|undefined
} (nullable, optional)
An optional regular expression or object that configures the listing behavior. By supplying a regular expression to thematch
andexclude
options, you may filter the file or directory names. You can also enable therecursive
option (i.e., set it totrue
) to enable the ability to recursively traverse subdirectories. If passed with aRegExp
object, then it only supplied thematch
option and the rest options will uses their default values. SeeLsOptions
for further information in detail.
Returns a promise that resolves to an array of string containing the entries result.
It can be null
if an error occurred while listing a directory, or returns a
promise with an empty array if any files doesn't match with the specified filter
options.
Example Usage (CJS)
const { lsFiles } = require('lsfnd');
(async () => {
// Search and list LICENSE and README file in current directory
const files = await lsFiles('.', /(README|LICENSE)(\.md|\.txt)*$/);
console.log(files);
})();
Example Usage (ESM)
import { lsFiles } from 'lsfnd';
// Search and list LICENSE and README file in current directory
const files = await lsFiles('.', /(README|LICENSE)(\.md|\.txt)*$/);
console.log(files);
async function lsDirs(
dirpath: StringPath | URL,
options?: LsOptions | RegExp | undefined
): Promise<LsResult>
An asynchronous function that retrieves a listing of directories within a specified
directory path. This function behaves the same as ls
function, but this
function only lists and retrieves the directories type (i.e., excluding any files type).
This function is an alias for:
// It uses LS_D to filter only the directory type ls(dirpath, options, lsTypes.LS_D);
-
dirpath
: {StringPath
|URL
}
The absolute or relative path to the directory you want to list. It can be a string path or a file URL path (either a URL string or aURL
object) with'file:'
protocol. -
options
: {LsOptions
|RegExp
|undefined
} (nullable, optional)
An optional regular expression or object that configures the listing behavior. By supplying a regular expression to thematch
andexclude
options, you may filter the file or directory names. You can also enable therecursive
option (i.e., set it totrue
) to enable the ability to recursively traverse subdirectories. If passed with aRegExp
object, then it only supplied thematch
option and the rest options will uses their default values. SeeLsOptions
for further information in detail.
Returns a promise that resolves to an array of string containing the entries result.
It can be null
if an error occurred while listing a directory, or returns a
promise with an empty array if any directories doesn't match with the specified
filter options.
Example Usage (CJS)
const { lsDirs } = require('lsfnd');
(async () => {
// List all installed NPM packages in 'node_modules' directory
// excluding '.bin' directory and organization packages (prefixed with '@')
const npmPkgs = await lsDirs('node_modules', { exclude: /(\.bin|@.+)/ });
console.log(npmPkgs);
})();
Example Usage (ESM)
import { lsDirs } from 'lsfnd';
// List all installed NPM packages in 'node_modules' directory
// excluding '.bin' directory and organization packages (prefixed with '@')
const npmPkgs = await lsDirs('node_modules', { exclude: /(\.bin|@.+)/ });
console.log(npmPkgs);
An enumeration defines the different types of listings supported by the
ls
function. It specifies which file system entries should be
included in the results. For more details documentation, refer to LsTypesInterface
for the type documentation or lsTypes
for the actual enum documentation.
Name | Description | Value |
---|---|---|
LS_A |
Represents an option to includes all types (i.e., includes both regular files and directories type). | 0b01 |
LS_D |
Represents an option to includes only the directories type. | 0b10 |
LS_F |
Represents an option to includes only the regular files type. | 0b100 |
A constant object containing all default values of LsOptions
type, typically implicitly used when user not specified the options
argument in every ls*
functions.
Name | Default Value |
---|---|
encoding |
'utf8' |
recursive |
false |
match |
/.+/ |
exclude |
undefined |
rootDir |
process.cwd() |
absolute |
false |
basename |
false |
This project is licensed under the terms of MIT license.