Echo JS 0.11.0

<~>
saelfaer 3758 days ago. link 1 point
I like the installing node libraries part, other than that it is very similar to http-server package (https://github.com/nodeapps/http-server) which I often use, due to it's easy  initialize...

what I didn't like about this serverfy, is the fact that before you start it asks you a set of questions. 

while http-server is lacking features, it sets up literally in miliseconds. with only 1 command!

Replies

anaptfox 3756 days ago. link 1 point
Hi, I created serverfy. Thanks for your opinion! 

What do you think about passing a command line arg like so:

serverfy -s

s meaning skip the questions.
saelfaer 3754 days ago. link 1 point
If it had that option i would use it for sure,
if that option implies it uses some default settings...

for example, http-server tries to setup in the /public folder if the one you're executing the command from has a public folder. if not it will setup the current folder.

things like that make your tool easier to use, since you don't have to ask for it every time. 

such a flag could 'assume' the current folder or the public folder is the one you want to host. if not then people can use the questions to set it up.

sounds feasable yes