In Python Script, I can simply make it like this:
import os
import asyncio
async def do_something():
os.system("pip list")
asyncio.run(do_something())
But what about on JavaScript/NodeJS? I see one module named 'os' too in there, but how do I use it?