The Wayback Machine - https://web.archive.org/web/20200623072706/https://github.com/topics/composable
Skip to content
#

composable

Here are 61 public repositories matching this topic...

BananaAcid
BananaAcid commented Aug 16, 2017

Adding a let r2 = new Router({prefix: 'a'}).loadMethods().get('/', (ctx, next) => {ctx.body='supposed to be at /api/a/'; return next();}) with let r1 = new Router({prefix: 'api'}).addRoutes(r2); does not result in a callable route. Actually koa-better-router crashes with not having any routes.

And using extend -> let r1 = new Router({prefix: 'api'}).extend(r2); will loose all prefix inf

bowheart
bowheart commented Jan 11, 2018

Hey, all!

As Zedux ramps up for its first pre-release (v0.1.0!), I just wanted to make a general request for feedback. Feel free to comment on this issue.

Some idea sparkers:

  • How are you using Zedux?
  • Do you see any flaws in the api? Anything that's unnecessarily difficult to use/remember?
  • Is there any documentation that's unclear?
  • Are there any examples you'd like to see?

Of

KSXGitHub
KSXGitHub commented Apr 10, 2020

Currently, help functions accept any array of strings. It would be nice if help parameter can be narrowed down to specific union of string tuples.

For example: Let's say our application supports a main command and 3 subcommands which are foo, bar, and bar baz, then type of cmdPath parameter of help of main command should be [] | ['foo'] | ['bar'] | ['bar', 'baz']

Improve this page

Add a description, image, and links to the composable topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the composable topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.