akkey247
12/15/2017 - 4:00 AM

【Parcel】最小構成

使い方

  1. パッケージインストール
$ npm i
  1. 実行
$ 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"
  }
}