load-json-file alternatives and similar modules
Based on the "Filesystem" category.
Alternatively, view load-json-file alternatives based on common mentions on social networks and blogs.
-
fs-extra
Node.js: extra methods for the fs object like copy(), remove(), mkdirs() -
chokidar
Minimal and efficient cross-platform file watching library -
find-up
Find a file or directory by walking up parent directories -
make-dir
Make a directory and its parents if needed - Think `mkdir -p` -
write-json-file
Stringify and write JSON to a file atomically -
proper-lockfile
An inter-process and inter-machine lockfile utility that works on a local or network file system. -
pkg-dir
Find the root directory of a Node.js project or npm package -
Filehound
Flexible and fluent interface for searching the file system -
fs-write-stream-atomic
Like `fs.createWriteStream(...)`, but atomic. -
istextorbinary
Determine if a filename and/or buffer is text or binary. Smarter detection than the other solutions.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of load-json-file or a related project?
README
load-json-file
Read and parse a JSON file
It also strips UTF-8 BOM.
Install
$ npm install load-json-file
Usage
import {loadJsonFile} from 'load-json-file';
console.log(await loadJsonFile('foo.json'));
//=> {foo: true}
API
loadJsonFile(filePath, options?)
Returns a Promise<unknown>
with the parsed JSON.
loadJsonFileSync(filepath, options?)
Returns the parsed JSON.
options
Type: object
beforeParse
Type: Function
Applies a function to the JSON string before parsing.
reviver
Type: Function
Prescribes how the value originally produced by parsing is transformed, before being returned. See the JSON.parse
docs for more.
load-json-file for enterprise
Available as part of the Tidelift Subscription.
The maintainers of load-json-file and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.
Related
- write-json-file - Stringify and write JSON to a file atomically