admin管理员组文章数量:1347931
I have a javascript file with a function that receives an Array with random numbers and returns a solution, I need to be able to run this function from the Command Line.
What i want is to be able to type something like:
myFunction 1,2,3,4,5,6,7
I have a javascript file with a function that receives an Array with random numbers and returns a solution, I need to be able to run this function from the Command Line.
What i want is to be able to type something like:
myFunction 1,2,3,4,5,6,7
- you could use nodejs I guess – Jaromanda X Commented Jan 22, 2018 at 4:23
- you are saying that you need run that function from browser console right? – imanshu15 Commented Jan 22, 2018 at 4:26
- 1 Possible duplicate of How do I load my script into the node.js REPL? – Aᴍɪʀ Commented Jan 22, 2018 at 4:27
- Which mand line are you referencing? – guest271314 Commented Jan 22, 2018 at 5:08
-
@iSkore Why did you add
node.js
tag to the Question? – guest271314 Commented Jan 22, 2018 at 5:30
4 Answers
Reset to default 3You can use Node.js for JavaScript CLI.
You can pass arguments like this -
node calendar.js --year 2020 --month 7
Using above mand process.argv[]
array will have this value -
['node', 'calendar.js', '--year', '2020', '--month', '7']
In your code, it can be read using array process.argv[]
like this -
var x = +process.argv[2]; //For third argument
var y = +process.argv[3]; //For fourth argument
1st and 2nd arguments will be node
and calendar.js
respectively
Export the function from your file:
module.exports = function myFunction(){
// ...
}
and then use that exported module in your mand line with Node's REPL by first running node
then executing:
> const myFunction = require('./path/to/the/file-containing-myFunction')`
after which you'll be able to use myFunction
like so:
> myFunction()
Considering NodeJS, create a wrapper script where your script with myFunction
is imported (would have to export it with module.exports.myFunction = myFunction
in your original file first), then pass it the arguments from process.args
, skipping the 1st element (as it's always path of the script):
// argsrun.js
var myFunction = require('thescript.js').myFunction;
myFunction(process.args.slice(2));
and call it from CLI:
node argsrun.js 1 2 3 4
The demo
'use strict';
function add( n1, n2 ) {
return n1 + n2;
}
function subtract( n1, n2 ) {
return n1 - n2;
}
On browser:
Invoke the function calling:
window.add( 1, 2 );
window.subtract( 1, 2 );
With Node.js:
Invoke the function from the mand line:
Note: this is only for development purposes
Do not use
eval
in production
Put this at the bottom of the file:
eval( process.argv[ 2 ] )
And call your function by doing:
node index.js "add( 1, 2 )"
node index.js "subtract( 1, 2 )"
with your terminal
本文标签: javascriptRun a JS function with arguments from the Command LineStack Overflow
版权声明:本文标题:javascript - Run a JS function with arguments from the Command Line - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743843844a2548769.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论