knpwrs / nws

A simple tool designed to launch a simple static web server in your current working directory.
https://npmjs.org/package/nws
MIT License
25 stars 7 forks source link

Connect depencency could be upgraded #1

Closed rla closed 11 years ago

rla commented 11 years ago

During install I noticed:

npm WARN engine connect@2.2.1: wanted: {"node":">= 0.5.0 < 0.7.0"} (current: {"node":"v0.11.0-pre","npm":"1.2.15"})

Lots of people run 0.8 or 0.10, so definitely >= 0.7. Current version of connect is 2.7.3 and has dropped the < 0.7.0 requirement. Nws code, which simply wraps connect's static middleware, should work with the new connect without modifications. Did not test tho.

knpwrs commented 11 years ago

Upgraded connect and published new version to npm. Thanks for letting me know.