Socket
Socket
Sign inDemoInstall

argv-or-stdin

Package Overview
Dependencies
11
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    argv-or-stdin

use the 1st argument, or, if none is present, standard input


Version published
Weekly downloads
4
increased by300%
Maintainers
1
Install size
194 kB
Created
Weekly downloads
 

Readme

Source

argv-or-stdin

use the 1st argument, or, if none is present, standard input

Sometimes you want to write a tool that takes a filename as its argument. However, if there is no argument provided, it'd be great to also accept it on standard input.

Usage

Let's write a simple version of the program cat:

cat.js

var arg = require('argv-or-stdin')
var fs = require('fs')

arg(function (err, filename) {
  fs.createReadStream(filename)
    .pipe(process.stdout)
})

And test it:

$ cat > test
hello warld
^D

$ node cat.js test
hello warld

$ echo 'test' | node cat.js
hello warld

API

var arg = require('argv-or-stdin')

arg(cb)

A function that will check process.argv[2] and, if it does not exist, accumulate all of process.stdin into a string and return that.

cb is a callback function of the form function (err, name) {}.

Install

With npm installed, run

$ npm install argv-or-stdin

See Also

License

ISC

Keywords

FAQs

Last updated on 03 Oct 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc