electron/docs-translations/zh-CN/tutorial/repl.md
DemoPark 6dd18678a9 add translations files for zh-CN
add zh-CN translations file - security.md
add zh-CN translations file - repl.md
add zh-CN translations file - windows-store-guide.md
update zh-CN translations file - glossary.md
update zh-CN translations file - README.md
2017-02-16 16:31:55 +08:00

22 lines
863 B
Markdown

# 交互式解释器 (REPL)
读取(Read)-运算(Eval)-输出(Print)-循环(Loop) (REPL) 是很简单的, 交互式的计算机编程环境,它采用单个用户输入,运算并返回结果给用户。
在这里 `repl` 模块提供了一个 REPL 的实现, 可以这样使用:
* 如果你的 `electron``electron-prebuilt` 已经安装为本地项目依赖项:
```sh
./node_modules/.bin/electron --interactive
```
* 如果你的 `electron``electron-prebuilt` 已经为全局方式安装:
```sh
electron --interactive
```
这里只会为主进程创建一个REPL。 您可以使用 Dev Tools 的“控制台”选项卡来为渲染器进程获取一个REPL。
**注意:** `electron --interactive` 在 Windows 上不可用.
更多的内容可以在这里找到 [Node.js REPL docs](https://nodejs.org/dist/latest/docs/api/repl.html).