$ npm i
$ npm start
実行後に localhost:1234
にアクセスし、 Hello World!!
と表示されれば成功。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Parcelテスト</title>
</head>
<body>
<p>Hello World!!</p>
</body>
</html>
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel index.html"
},
"author": "",
"license": "ISC",
"devDependencies": {
"parcel-bundler": "^1.12.5"
}
}