I want to temporarily run the node javascript. For example, like this:
echo console.log(1+1) > tmp.js & node tmp.js & del tmp.js
It works fine. However, I do not like the use of temporary files. Is there any other cleaner way?
For example, I wonder if there is an option for such a function in node.exe
You can use the -e, --eval option:
node -e "console.log(1+1)"
Documentation: https://nodejs.org/api/cli.html#cli_e_eval_script
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With