マイブーム@技術と生活

仕事や生活に関わる技術的なことを記述します。

ウェブ開発ランバッチ

ビルドインウェブサーバー

 

PHP

start php -S localhost:8000
"C:\Program Files\Google\Chrome\Application\chrome.exe" "http://localhost:8000/test.php"

 

Python 3.10 版

start python -m http.server 8000
"C:\Program Files\Google\Chrome\Application\chrome.exe" "http://localhost:8000/index.html"

 

Python 2.7 版

start python -m SimpleHTTPServer 8000
"C:\Program Files\Google\Chrome\Application\chrome.exe" "http://localhost:8000/"

 

□ クライアント側

curl "http://localhost:8000/test.php"

 

□ クライアント側 Visual Studio Community 2019 版

httprepl "https://petstore.swagger.io/"

 

□ index.html

<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>
</TITLE>
<STYLE type="text/css">
<!--
BODY{
  background-image : url(image1.gif);
  background-repeat : no-repeat;
}
-->
</STYLE>
</HEAD>
<BODY>
<FONT size="-1">
<BR>
Hello World!<BR>
<BR>
</FONT>
</BODY>
</HTML>