Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cline-parser

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cline-parser

simple command line parser

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

cline-parser

Mac/LinuxWindows
Build Status
Windows Build status

A library to parse a string command line into an array usable by child_process.spawn

Install

npm i cline-parser --save

Usage


    var parser = require('cline-parser');
    
    var cmdStr = 'ls "some path / \\"with /spaces" -args';
    var cmd = parser(cmdStr);
    
    // this is what you could actually do.
    require('child_process').spawn(cmd.prg,{},cmd.args);
    
    // quick insights.
    cmd.prg == 'ls';
    cmd.args == [
        'some path / \\"with /spaces',
        '-args'
    ];
    

FAQs

Package last updated on 16 Jun 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc