Create a new file called “trans” or whatever you want to call it:
#!/bin/bash
babel $1.js --out-file $1.babel; node $1.babel
This script first transpiles our Javascript code with Babel, then executes it with Node.
Then make our bash script executable:
chmod +x trans
If the current directory is not in the path, you can launch it like this for devServer.js, for example.
./trans devServer