Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 764 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 764 Bytes

Installation

git clone https://github.com/lourd/node-async-iterator-playground
cd node-async-iterator-playground
node --harmony_async_iteration test.js

Debugging

  1. node --inspect-brk --harmony_async_iteration test.js
  2. Open Chrome, go to chrome://inspect
  3. test.js should be listed under the "Remote Target" section. Click on the inspect link

If you're a VSCode user, you can also open the project and run the debugger from within test.js to step through the code in your editor.

Prior Art