3
1

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.

[入門] Web技術とは何か #1

Last updated at Posted at 2016-08-22

何回かにわけてWeb技術についての基礎を復習します
#2のリンク:http://qiita.com/murphy-warugaki/items/6dc96e4759b71e79f8b9

#1は【Webアプリケーションとは何か?】について

  • #1のアジェンダ
    • デスクトップアプリケーション(またはスタンドアローン型)
    • Webアプリケーション
    • それぞれの処理について

## デスクトップアプリケーション
みんなが普段使っているワープロや計算ソフトなどのこと
ex )

  • word
  • excel

property )

  • 主な処理は、手元のPC上で行われる
  • 画面は、OSも機能を利用して表示される
  • アプリケーションをPCへインストールする必要がある

## Webアプリケーション
HPのような受動的なものではなく、ユーザーが能動的に使えるもの
ex )

  • 電車の時刻検索サービス:
    「出発時と目的地を入力して最適な乗り換え経路を検索する」

property )

  • 主な処理は、手元のPCではなくサーバ上で行われる
  • 画面は、HTMLなどで構成され、Webブラウザ上で表示される
  • アプリケーションをPCへインストールする必要がない

## 主な処理とは
ここで言う「主な処理」とは「計算処理」/「経路の検索」のこと。

  • これらはデスクトップアプリケーションでは、みんなの手元のPCが担当していた。
  • しかし、Webアプリケーションでは「サーバ」と呼ばれるコンピューターが担当している。

###次の授業

#2のリンク:http://qiita.com/murphy-warugaki/items/6dc96e4759b71e79f8b9

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?