serve current directory from command line

2019-01-16 00:13发布

could someone give me a hint, howto serve the current directory from command line with ruby? it would be great, if i can have some system wide configuration (e.g. mime-types) and simply launch it from every directory.

8条回答
一纸荒年 Trace。
2楼-- · 2019-01-16 00:35
require 'webrick'
include WEBrick

s = HTTPServer.new(:Port => 9090,  :DocumentRoot => Dir::pwd)
trap("INT"){ s.shutdown }
s.start
查看更多
混吃等死
3楼-- · 2019-01-16 00:37
python3 -m http.server

or if you don't want to use the default port 8000

python3 -m http.server 3333

or if you want to allow connections from localhost only

python3 -m http.server --bind 127.0.0.1

See the docs.

查看更多
手持菜刀,她持情操
4楼-- · 2019-01-16 00:38

Use ruby gem Serve.

To install on your system, run gem install serve.

To serve a directory, simply cd to the directory and run serve.

Default port is 4000. It can also serve things like ERB, HAML, Slim and SASS.

查看更多
Explosion°爆炸
5楼-- · 2019-01-16 00:42

As Aaron Patterson tweeted it out today you can do:

ruby -run -e httpd . -p 5000

And you can set the bind address as well by adding -b 127.0.0.1

Works with Ruby 1.9.2 and greater.

查看更多
对你真心纯属浪费
6楼-- · 2019-01-16 00:52

Web Server in 1 line


This may or may not be quite what you want but it's so cool that I just had to share it.

I've used this in the past to serve the file system. Perhaps you could modify it or just accept that it serves everything.

ruby -rsocket -e 's=TCPServer.new(5**5);loop{_=s.accept;_<<"HTTP/1.0 200 OK\r\n\r\n#{File.read(_.gets.split[1])rescue nil}";_.close}'

I found it here

Chris

查看更多
地球回转人心会变
7楼-- · 2019-01-16 00:55

Simplest way possible (thanks Aaron Patterson/n0kada):

ruby -run -e httpd . -p 9090

Alternate, more complex way:

ruby -r webrick -e "s = WEBrick::HTTPServer.new(:Port => 9090, :DocumentRoot => Dir.pwd); trap('INT') { s.shutdown }; s.start"

Even the first command is hard to remember, so I just have this in my .bashrc:

function serve {
  port="${1:-3000}"
  ruby -run -e httpd . -p $port
}

It serves the current directory on port 3000 by default, but you can also specify the port:

~ $ cd tmp
~/tmp $ serve      # ~/tmp served on port 3000
~/tmp $ cd ../www
~/www $ serve 5000   # ~/www served on port 5000
查看更多
登录 后发表回答