-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Promises version of ReadLine #37287
Comments
I agree it would make sense for Node.js to provide promise-based versions of |
I would like to work on this. Is that alright? |
That's fine by me, was going to get to this after doing some work on something else but if you're free go for it. |
PR-URL: nodejs#37947 Fixes: nodejs#37287 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
PR-URL: nodejs#37947 Fixes: nodejs#37287 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
PR-URL: nodejs#37947 Fixes: nodejs#37287 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
Is your feature request related to a problem? Please describe.
Not to my knowledge.
Describe the solution you'd like
I'd like to have access to a set of functions for the readline portion of Node in a similar style to
import fs from 'fs/promises'
. Having to wrap callback functions in promises is rather tedious.I'd like to know if this would be something I can work on. I want this for my own purposes and have the time to work on and implement this if possible.
The text was updated successfully, but these errors were encountered: