Yes, you can install locally and run with node_modules :
./node_modules/.bin/babel
If you have a local package package.json, you can add an NPM script to simplify this command, since NPM scripts work with ./node_modules/.bin on PATH :
"scripts": { "babel": "babel ...", }
To run from any directory in package.json:
$ npm run babel
joews
source share