-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add metadata to resources, and the ability to find them by path #22
Conversation
This adds the option of adding a metadata object when registering a resource definition. The metadata won't actually be used, other than returned when calling `web.find` which is a new method to find resource definitions by path as opposed to by name.
My opinion on this is that it's a stop gap solution until something like #8 comes around. It'll do for now, but really nap should practice what it preaches. |
From some offline discussions with @aaronhaines we may actually want to implement this in rhumb instead, and simply expose the |
HTTP defines the I'd be keen to implement this in nap, instead of the I'd prefer that over a |
Thinking about this some more, it makes a lot of sense for nap to transition into registering resources via requests, much like what is described in #8. For instance, this would neatly give us a method by which we can extensibly provide resource metadata, as well as the ability to at runtime add, modify, and even remove resources (authorization can be implemented via middleware, and should be a protocol concern.) With regards to the naming of methods, we can neatly sidestep this by adding (rudimentary) protocol support in the URI resolution: web.req(
{ method: 'PUT', uri: 'nap:/my/{resource}'
, headers: { allow: ['GET', 'POST'] }
}
) As well, to find what options are available in nap-land: web.req({ method: 'OPTIONS', uri: 'nap:/my/{resource}' }, function(err, res) {
// res holds information about the resource at /my/{resource}
}) In effect, |
👍 |
This adds the option of adding a metadata object when registering
a resource definition. The metadata won't actually be used, other
than returned when calling
web.find
which is a new method tofind resource definitions by path as opposed to by name.