LoginSignup
0
0

More than 5 years have passed since last update.

【Sinatra】Hello worldを書いてみた

Posted at

Sinatraの特徴

Rubyを使って、最小限の労力でWebアプリケーションを素早く作る土台
- 特徴:
- 軽量なWebアプリケーションフレームワーク
- 簡潔に記述できる
- 柔軟な拡張性

  • 用途: 小規模なWebアプリケーションの開発に向いている
  • 採用例:アップル、GitHub、イギリス政府、スタンフォード大学など

SinatraでHello world

require 'sinatra'
require 'sinatra/reloader'

get '/' do
  'Hello World!'
end
0
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
0
0