-
In [app.js:77](https://github.com/hyperapp/hyperapp/blob/24fe0301f340d7e066ae25d14d416471f4c89c95/src/app.js#L77) hyperapp will crash if an action returns ~~a value that is neither `undefined` nor `ty…
-
SEO的な観点から、フロントはサーバーサイドレンダリングできないとまずいです
hyperappはSSRできるのか謎なので、できればReactに移行しようと思います。
これは結構でかい変更になるので最優先でお願いします。
(ここでいう"SSRできる"はprerender.ioでレンダリングできれば可とする)
-
```js
var previousModelJSONStr = JSON.stringify(model)
model = merge(model, result)
var nowModelJSONStr = JSON.stringify(model)
if (hashCode(previousModelJSONStr) !== hashCode(nowModelJSONStr)) {
…
-
Hy,
Thank you very much for CodeSandbox.
Regards
-
Having `papercss@1.5.0` as devDependency
```
npm i
```
Fails with:
```
> papercss@1.5.0 postinstall D:\hyperapp-typescript-starter\node_modules\papercss
> gulp postinstall
module.js:549
…
-
As requested by @jbucaran in the slack channel, I am posting a request for fragmented state. The idea would be to map the namespace of actions to the namespace of state, such that the action `actions.…
-
The following sample works perfectly in `noImplicitAny` *unless* I turn on `strictNullChecks`. In that event, the `s` parameter on `foo` seems to get an implicit `any`.
```ts
interface ActionsObje…
-
苹果中国区下架了,已购买的在已购列表中也看不见了,咋办
-
Can you find the "problem" with the following code? Disclaimer: This may not be a problem.
```jsx
import { h, app } from "hyperapp"
const angle = t => 2 * Math.PI * t / 60000
const model = {…
-
> EDIT: @Alber70g suggested an even more extreme simplification:
>
> Instead of `app({ model, view }, root)` → `app(model, view, root)`, but we can discuss that on another issue.
We did it [once]…