6a9ffbcc
liuqimichale
地图点击事件
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# babel-cli
> Babel command line.
In addition, various entry point scripts live in the top-level package at `babel-cli/bin`.
There are some shell-executable utility scripts, `babel-external-helpers.js` and `babel-node.js`, and the main Babel cli script, `babel.js`.
## Install
```sh
npm install --save-dev babel-cli
```
## Usage
```sh
babel script.js
```
For more in depth documentation see: http://babeljs.io/docs/usage/cli/
|