budo-runner
v1.0.6
Published
running budo examples
Downloads
2
Readme
budo-runner
Getting started
To get started install budo-runner
from npm:
npm i budo-runner --save-dev
or globally
npm i budo-runner -g
Usage
You can run it by following
budo-runner example/something(.js)
Also, you can put it to your scripts in package.json
and install and run it locally.
So it can look like this:
"scripts": {
"dev": "budo-runner example"
}
and run examples by typing:
npm run dev example/something(.js)