mirror of
https://github.com/mthenw/frontail.git
synced 2026-04-26 02:05:57 +03:00
[GH-ISSUE #53] README lists -h option as alias for both --help and --host #36
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/frontail#36
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ChristianWilkie on GitHub (Sep 15, 2015).
Original GitHub issue: https://github.com/mthenw/frontail/issues/53
In the project README under Usage the option
-his listed as an alias for both--helpand--host. When I runfrontail -hit seems to actually refer to--host:Also, running
frontail --helplists the same thing:Anyway, not a huge deal, but I just thought I'd mention it.
@mthenw commented on GitHub (Sep 16, 2015):
Thanks for reporting. It's not a big deal, but based on my quick research it won't be easy. I need to replace options parser (commander) with other library.
@Spown commented on GitHub (May 5, 2016):
yeah... that, or just remove "-h" from "-h, --help output usage information" both in the readme and the referance. so only "--help" would remain, duh
@mthenw commented on GitHub (May 5, 2016):
@Spown wanna contribute? :)
@Spown commented on GitHub (May 5, 2016):
well, I already forked it. right now I'm trying to compose a buildable version for node 4, since socket.io 0.9 you are using is so old it won't even compile. and the node-temp in tests doesn't work either. If I mange to make it run - I'll make a pull request.
@mthenw commented on GitHub (May 5, 2016):
Yeah, there is a bunch of other stuff that doesn't work on Node 4. I will try to fix that today, so you can work only on this fix.
@mthenw commented on GitHub (May 5, 2016):
@Spown push to master version working with Node v4. There is no problem with socket.io (TravisCI can confirm).
@Spown commented on GitHub (May 5, 2016):
funny thing, node-temp runs in node 4.2.2 under linux, but not in windows (mayhaps, the same goes for socket.io)
https://travis-ci.org/Spown/frontail/jobs/127997186
@Spown commented on GitHub (May 5, 2016):
the thing is I really need to make it run in windows, because I need to watch for a remote file on an Openshift server (where I'm not able to run multiple apps on different ports, afaik). So if I unable - I kinda have no use for it...
@Spown commented on GitHub (May 5, 2016):
it would be really cool, if this module had an express middleware version though
@mthenw commented on GitHub (May 5, 2016):
There is newer version on
temp. You could try using that.@Spown commented on GitHub (May 5, 2016):
yeah, I just found another trailing solution, sorry. still according to https://www.npmjs.com/package/commander#helpcb you don't need to replace options parser - just take out one "-h" from the help text.