Security News
ESLint is Now Language-Agnostic: Linting JSON, Markdown, and Beyond
ESLint has added JSON and Markdown linting support with new officially-supported plugins, expanding its versatility beyond JavaScript.
@kwsites/file-exists
Advanced tools
Synchronous validation of a path existing either as a file or as a directory.
Synchronous validation of a path existing either as a file or as a directory.
const { exists, FILE, FOLDER, READABLE } = require('@kwsites/file-exists');
// check for a folder existing
assert(exists(__dirname, FOLDER));
assert(!exists(__filename, FOLDER));
// check for a file existing
assert(!exists(__filename, FILE));
assert(exists(__filename, FILE));
// when no type is specified, both folders and files are allowed
assert(exists(__dirname));
assert(exists(__filename));
// alternatively specify both files and folders
assert(exists(__dirname, FILE + FOLDER));
// or just that the path is readable (can be either a file or folder)
assert(exists(__filename, READABLE));
This library uses debug to handle logging, to enable logging, use either the environment variable:
"DEBUG=@kwsites/file-exists" node ./your-app.js
Or explicitly enable logging using the debug
library itself:
require('debug').enable('@kwsites/file-exists');
1.1.1
debug
to log results of the file system checksjest
testsFAQs
Synchronous validation of a path existing either as a file or as a directory.
The npm package @kwsites/file-exists receives a total of 3,551,922 weekly downloads. As such, @kwsites/file-exists popularity was classified as popular.
We found that @kwsites/file-exists demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
ESLint has added JSON and Markdown linting support with new officially-supported plugins, expanding its versatility beyond JavaScript.
Security News
Members Hub is conducting large-scale campaigns to artificially boost Discord server metrics, undermining community trust and platform integrity.
Security News
NIST has failed to meet its self-imposed deadline of clearing the NVD's backlog by the end of the fiscal year. Meanwhile, CVE's awaiting analysis have increased by 33% since June.