fs-extra VS async

Compare fs-extra vs async and see what are their differences.

fs-extra

Node.js: extra methods for the fs object like copy(), remove(), mkdirs() (by jprichardson)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
fs-extra async
16 16
9,347 28,071
- -
5.6 8.1
about 2 months ago 25 days ago
JavaScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

fs-extra

Posts with mentions or reviews of fs-extra. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-08.
  • What are some of the best libraries you cannot work without?
    3 projects | /r/node | 8 Jun 2023
    I haven't seen fs-extra mentioned yet. For my work it involves a fair bit of reading/writing to the filesystem, so this makes it quite nice to deal with everything in an async way.
  • mkdirp module problem
    1 project | /r/node | 4 Apr 2023
    There are a number of these modules, https://github.com/jprichardson/node-fs-extra being probably the most famous / popular. It does a better job of explaining the why.
  • Re-release fs-extra to properly support esm/cjs usage
    2 projects | dev.to | 24 Dec 2022
    Since updating nodejs@18 and switching to esm only, many libraries have been replaced to support esm import, but fs-extra has not been The use of esm is correctly supported, and no suitable replacement has been found. After the a PR proposed by us was rejected, I decided to re-release a [fs-extra-unified] that correctly supports the use of esm (https://www.npmjs.com/package/fs-extra-unified) module.
  • Создаем React-компоненты иконок с помощью Figma API и SVGR. Часть 1.
    6 projects | dev.to | 16 Nov 2022
  • Is it just me or after updating Foundry sucks?
    1 project | /r/FoundryVTT | 12 Sep 2022
    Are you seriously suggesting the creators of the software can't write a "save elsewhere" function using Electron and JavaScript? The system has versioning so it would be easy to ask the user to create a backup on first loading with a new version of the software, and the copySync function to make a backup. Foundry uses Node.js already.
  • Node.js for GIS: from google locations to GeoJSON using Streams
    2 projects | dev.to | 16 Mar 2022
    We are dealing with a file that is far too large to be loaded into memory at once. Node cannot buffer the file for us because of the size of it.
  • Implement cool features for my static site generator
    3 projects | dev.to | 29 Oct 2021
    Implementing those 3 features was quite simple. For metadata and markdown file, I mainly used an external library: showdown to convert from markdown files to html files as well as parsing metadata from markdown files. However, implementing the support for static assets such as images is a bit more interesting. I had to use another external library called fs-extra to copy assets folder from user to the dist folder. I also had to create another new class called CopyFolder where I used fs.copy method to copy assets folder
  • Writing JS-based Bash scripts with zx
    6 projects | dev.to | 12 Aug 2021
    The zx project implements a shell script executor similar to Bash but using JavaScript modules. It provides an inbuilt asynchronous JavaScript API to call other commands similar to Bash. Besides that, it provides wrapper functions for several Node.js-based command-line helpers such as chalk, minimist, fs-extra, OS, and Readline.
  • Why Storing Files in the Database Is Considered Bad Practice
    2 projects | dev.to | 22 Jun 2021
    Node.js has the built-in fs module (fs/promises with async/await) which makes it easy to interact with the file system. On top of that, there are a few convenient libraries such as fs-extra and findit that make common tasks straightforward.
  • Batch with Node.js
    1 project | dev.to | 27 Apr 2021
    For this purpose we'll use fs-extra since copy/paste seems like not supported by fs API.

async

Posts with mentions or reviews of async. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-16.
  • Avoid the Promise.all pitfall
    1 project | dev.to | 12 Oct 2023
    Well you could just install the async package which has lots of useful functions like mapLimit which will reduce the burden and only run a number in parallel.
  • What is this callback in async.parallel function?
    1 project | /r/learnprogramming | 8 Aug 2022
    Have you checked out the docs for the async library they are using?
  • How to limit concurrency with Python asyncio?
    1 project | /r/codehunter | 22 Apr 2022
    Edit:2. What's a good library that takes care of common async patterns? (Something like async)
  • I Avoid Async/Await
    7 projects | news.ycombinator.com | 16 Apr 2022
    Async/await is certainly not promises. In fact it would be much better implemented without promises as I proposed here: https://es.discourse.group/t/callback-based-simplified-async...

    I would even say that async/await is anti-promise, it takes the main functionality of promises, a caching layer for results and errors that allows you to add the code continuation later and elsewhere (which is a major footgun imo) and coerces the execution flow back to going on the next line and provided immediately at compile time which results in a cleaner flow but not as clean, stateless, efficient or functional as if you were to remove the promises completely. Having an additional caching layer and state machine around every asynchronous function call is quite inefficient.

    The essence of async/await is not promises, it's the underlying javascript generator (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...) functionality combined with asynchronous code to stop and start the generator. It's the ability to pause and resume function execution based on asynchronous operations.

    The promise functionality, the caching layer and state machine for results is basically sanitized away with async/await, it becomes dead-weight computation. The only benefit of promises in async/await code is being able to more easily interface with other promise laden code which you don't need once you have async/await and a library like https://www.npmjs.com/package/async for more complex cases.

    Note that promises based async/await is also a mess of an implementation that breaks stack traces and needs to support tons of odd statement corner cases (basically anything that can return an object that could be a promise) whereas a continuation passing style async/await would be a much simpler implementation that would only apply to function calls and maintain stack traces. We get that stack trace support automatically because of the great work of whoever implemented javascript generators which seem to already carry stack traces across paused/resumed functions (if you don't wrap in promises).

  • What is the difference between async.waterfall and async.series
    1 project | /r/codehunter | 2 Apr 2022
    The nodejs async module: https://github.com/caolan/async provides 2 similar methods, async.waterfall and async.series.
  • JavaScript ES6 promise for loop [duplicate]
    1 project | /r/codehunter | 22 Mar 2022
    With async I'd simply use async.series().
  • Some questions about events and promises
    2 projects | /r/node | 18 Mar 2022
    I don't understand. Sure you could spawn a ton of processes, but things might be bogged down. There are utilities out there for doing work queues.... so only N workers are running at any one time. The async library has some utilities for that. https://github.com/caolan/async
  • Caolan Asyncjs vs Async/Await: Which One to Use for Async Operations in NodeJS
    1 project | dev.to | 28 Feb 2022
    The documentation of asyncjs is quite straightforward and easy to read. As we've only seen a couple of use cases in this article, I'd recommend to go the asyncjs documentation and check out other possibilities with the library. You can also try to replicate the same using async/await to solidify your understanding of where the library might still make sense.
  • [AskJS] How were asynchronous functions written before Promises?
    1 project | /r/javascript | 2 Feb 2022
    It basically was tons and tons of callbacks. They'd nest weirdly deep and be a pain to work with. If you're curious, here's a link to one of my favorite JavaScript libraries from those days - it gave you a bunch of neat utilities for dealing with async code.
  • Aren't promises just callbacks?
    1 project | /r/codehunter | 2 Jan 2022
    api(function(result){ api2(function(result2){ api3(function(result3){ // do work }); });}); Which I could use a library like async for anyway, with something like:

What are some alternatives?

When comparing fs-extra and async you can also consider the following projects:

graceful-fs - fs with incremental backoff on EMFILE

Bluebird - :bird: :zap: Bluebird is a full featured promise library with unmatched performance.

rimraf - A `rm -rf` util for nodejs

moment - Parse, validate, manipulate, and display dates in javascript.

fs-jetpack - Better file system API for Node.js

q - A promise library for JavaScript

chokidar - Minimal and efficient cross-platform file watching library

contra - :surfer: Asynchronous flow control with a functional taste to it

mkdirp - Recursively mkdir, like `mkdir -p`, but in node.js

Simple-Series-Parallel - A minimalist utility module for running async functions in series or parallel

write-json-file - Stringify and write JSON to a file atomically

neo-async - Neo-Async is thought to be used as a drop-in replacement for Async, it almost fully covers its functionality and runs faster