https://github.com/luislobo/process-next-tick-sample
This project explains the use of project.nextTick and the importance of using it in events.
https://github.com/luislobo/process-next-tick-sample
Last synced: 7 months ago
JSON representation
This project explains the use of project.nextTick and the importance of using it in events.
- Host: GitHub
- URL: https://github.com/luislobo/process-next-tick-sample
- Owner: luislobo
- Created: 2016-06-07T21:46:45.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-07T22:20:02.000Z (about 10 years ago)
- Last Synced: 2025-10-10T03:32:12.503Z (8 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Process Next Tick Sample
This project explains the use of project.nextTick and the importance of using it in events.
Give it a try running:
```bash
node testStreamLibrary.js
```
That sample will print nothing to the console, while running:
```bash
node testStreamLibraryRight.js
```
will print all events into the console.