hyperapp + parcel
インストール
npm init -y && npm i hyperapp parcel-bundler babel-plugin-transform-react-jsx babel-preset-env
package.json
{
...
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --public-url ./"
}
...
}
.babelrc
{
"presets": ["env"],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
]
}
index.js
import { h, app } from 'hyperapp'
const view = () =>
<div>
hello hyperapp
</div>
app({}, {}, view, document.body)
index.html
<html>
<body>
<script src="./index.js"></script>
</body>
</html>
参考
Author And Source
この問題について(hyperapp + parcel), 我々は、より多くの情報をここで見つけました https://qiita.com/toknsi/items/6defb15e685d39664962著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .