spawn-args

Turn a string of command line options into an array for child_process.spawn

MIT 5 个版本
安装
npm install spawn-args
yarn add spawn-args
pnpm add spawn-args
bun add spawn-args
README

spawn-args

Build status

Turn a string of command line options into an array for child_process.spawn

install

$ npm install spawn-args

usage

var spawnargs = require('spawn-args');
//spawnargs(argString:string[, options:object]);

var args = spawnargs('-port 80 --title "this is a title"');

/*

	[
		'-port',
		'80',
		'--title',
		'"this is a title"'
	]
	
*/

The removequotes option will remove quotes from values if they do not have spaces

var args2 = spawnargs('-port 80 --color "red" --title "this is a title"', { removequotes: true });

/*

	[
		'-port',
		'80',
		'--title',
		'"this is a title"'
	]
	
*/

If removequotes is always then quotes will be removed even if the value contains spaces

var args3 = spawnargs('-port 80 --color "red" --title "this is a title"', { removequotes: 'always' });

/*

	[
		'-port',
		'80',
		'--title',
		'this is a title'
	]
	
*/

license

MIT

版本列表
0.2.0 2016-06-30
0.1.0 2015-05-18
0.0.4 2014-07-23
0.0.3 2014-07-22
0.0.2 2014-04-05