Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soulcutter/ember-cli-nexttick
Example of "(node) warning: Recursive process.nextTick detected."
https://github.com/soulcutter/ember-cli-nexttick
Last synced: 22 days ago
JSON representation
Example of "(node) warning: Recursive process.nextTick detected."
- Host: GitHub
- URL: https://github.com/soulcutter/ember-cli-nexttick
- Owner: soulcutter
- Created: 2014-12-03T22:29:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-04T14:31:53.000Z (almost 10 years ago)
- Last Synced: 2024-10-06T03:17:04.165Z (about 1 month ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Temp
This is a relatively blank ember-cli app which demonstrates some combination of dependencies
(as yet unknown) which breaks the `ember s` process when a file changes, spamming the console
with:```
(node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for recursive deferral.
```and then freezing.
## Prerequisites
You will need the following things properly installed on your computer.
* [Git](http://git-scm.com/)
* [Node.js](http://nodejs.org/) (with NPM) and [Bower](http://bower.io/)## Installation
* `git clone ` this repository
* change into the new directory
* `npm install`
* `bower install`
* `gem install compass`## Reproducing the problem
* `ember server`
* Once the serve process has fully started-up, make some trivial edit to application.hbs and then save the file
* the server should pick up the change, start reprocessing the trees and then…
* `(node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for recursive deferral.`