hyperapp-router icon indicating copy to clipboard operation
hyperapp-router copied to clipboard

Declarative routing for Hyperapp V1 using the History API.

Results 25 hyperapp-router issues
Sort by recently updated
recently updated
newest added

TS compiler complains without it... So I wasn't being able to add a class to my links as I learned in https://github.com/jorgebucaran/hyperapp-router/issues/86.

The current interface for RouterProps.render is `(props: RenderProps) => VNode`. You can set an Element to be rendered as well (code below) but typescript compiler issues this warning message: `Type...

I am using `@hyperapp/html` instead of JSX. When creating a new `Link`, I do it like this: `Link({ to: '/about' }, 'About')` which works as expected. However the type declaration...

Nice to meet you. If I used Hyperapp v1 in TypeScript, I corrected it because Route can not interpret types well. render seems to assume a function that returns VNode,...

It is time to think to the new router for HAV2. (or I am a little bit too hasty ?). This router of choice will be state first, as requested...

## Hyperapp#2 Support (Updating) Implemented with state-first in mind, simplicity and consistency to hav#1 router. This Router follows simple concept of state-driven components (as hyperapp itself), the only one possible...

Hello, could you also support hashed routes beyond pathname routes? For example, instead of writing `http://example.com/detail/` I'd prefer to write `http://example.com/#/detail` to go to the detail view. This is important...

FEATURE
DISCUSSION

As noted in the subject, the Typescript type definitions for the library are yet to be done.

TYPES

- Reason for `export function Link(props: LinkProps): VNode | any;` change request: ``` TS2605: JSX element type 'void | VNode' is not a constructor function for JSX elements. Type 'void'...

Firstly, i wish to thank the Hyperapp community for it's great work on hyperapp. However, i am facing an issue implementing a feature. I'm almost done making an Hyperapp js...

QUESTION