I have code something like below in test.js
test.js
const run = async () => { //some code running } module.exports = { run, };
Now how to call the run method from the command line?
run