2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

孤独アドベントカレンダーに挑戦Advent Calendar 2019

Day 8

rubyワンライナーでwebサーバーを立てるTips

Last updated at Posted at 2019-12-07

mockサーバとかサッと作成したい時に使うTipsです。
rubyコマンドを使ってワンライナーでwebサーバーを起動します。

手順

1. レスポンスボディのファイルを用意します。

response.rb
"Hello"

2. response.rbファイルが配置されているパスでruby -run -e httpd ./response.rb -p 3333実行します。

$ ls -la
response.rb

$ ruby -run -e httpd ./response.rb -p 3333

-> これでwebサーバーが起動します。

3. 確認してみる

curlで確認してみます。
ブラウザでもlocalhost:3333にアクサスしたらresponse.rbの中身が返ってきます。

$ curl localhost:3333
"hello"
::1 - - [03/Dec/2019:20:18:36 JST] "GET / HTTP/1.1" 200 8
- -> /
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?