Ben Pate

Results 25 issues of Ben Pate

Can we implement a way to add/remove cookies in hyperscript? This is similar to #127, but for stylesheets: If we add expression `cookie` (similar to `tag`, `input`, or `button` from...

I'd like to be able to do this: `take .selected for {non-existent-item}` without throwing and error. It seems like, if the `from` expression resolves to null, then `take` should just...

It seems like the `add` command does not accept null values, as in, I cannot say `add [@attribute=true] to ` Here's my example case: I have this hyperscript statement in...

Hyperscript's behaviors are a wonderful thing, but instantiating them on an element always reads a little funny. @dz4k has promoted `I am` as an alias for the `install` command, as...

I think hyperscript would really benefit from a `map` command that takes an array and maps it to a series of values. We originally discussed this as a property of...

There's an amazing javascript library called [HotKeys](https://github.com/jaywcjlove/hotkeys) that makes it stupid easy to build keyboard shortcuts. Hyperscript does this very well, but I think that we could make it even...

Can we implement a way to add/remove stylesheets from the DOM? I'm not set on my solution, but here's my first pass: If we add expression `stylesheet` (similar to `tag`,...

I'm kicking around a number of updates to the `fetch` syntax, while still trying to keep things as short and expressive as possible. Can we use this ticket to start...

The `wait` syntax in hyperscript does a great job of enabling event controlled flow. However, it has trouble when waiting on more than one event at the same time. For...

I think I just made [my first operator](https://github.com/bigskysoftware/_hyperscript/pull/37) for hyperscript (yay!). To flatten the learning curve, it would be very helpful to document the basic parameters required by the internal...