Git Product home page Git Product logo

Comments (7)

puzrin avatar puzrin commented on August 27, 2024

Node streams are async (event driven), it's impossible to mix it with sync code. But you can acces stdin via process.stdin.fd http://stackoverflow.com/a/9318276

But, honestly, i don't see reason to add rare features until anyone need it

from argparse.

hpaulj avatar hpaulj commented on August 27, 2024

If the file is opened sync before creating the stream, then it can be used either way. That is, the stream's .fd property is available in the same way as process.stdin.fd. The stream object has useful information about the file in addition to providing to providing async stream methods.

from argparse.

piranna avatar piranna commented on August 27, 2024

Honestly, probably this would be the best feature of argparse and the main reason to use it, FileType is awesome, and returning a stream in Node.js instead makes totally sense. This could also open the door to use other custom argument checkers...

from argparse.

rlidwka avatar rlidwka commented on August 27, 2024

Ported from python as part of argparse 2.0 (as process.stdout for - or fs.createWriteStream otherwise).

Keep in mind that you can close fs streams with stream.close(), and stdout (which shouldn't be closed) conveniently doesn't have such method.

Maybe it needs some examples, I feel like FileType is one of the less clear parts in all of this.

from argparse.

piranna avatar piranna commented on August 27, 2024

Does this also works to read files?

from argparse.

rlidwka avatar rlidwka commented on August 27, 2024

yeah, FileType('r') to read and FileType('w') to write, same as python

from argparse.

piranna avatar piranna commented on August 27, 2024

Great! :-D

from argparse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.