We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The package.json engines field in the repo suggests it works with Node 0.8, but https://github.com/ericf/express-handlebars/blob/master/lib/utils.js uses setImmediate. setImmediate was introduced in Node 0.10.x e.g. https://github.com/joyent/node/wiki/Api-changes-between-v0.8-and-v0.10#added
engines
setImmediate
0.10.x
This manifests as a hang when rendering on node 0.8.x + Express 3.x.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. I will update it to correct the engines entry in the package.json to be >=0.10.
package.json
>=0.10
Sorry, something went wrong.
a1864d2
Published in v1.0.2.
v1.0.2
No branches or pull requests
The package.json
engines
field in the repo suggests it works with Node 0.8, but https://github.com/ericf/express-handlebars/blob/master/lib/utils.js usessetImmediate
.setImmediate
was introduced in Node0.10.x
e.g. https://github.com/joyent/node/wiki/Api-changes-between-v0.8-and-v0.10#addedThis manifests as a hang when rendering on node 0.8.x + Express 3.x.
The text was updated successfully, but these errors were encountered: