-
Notifications
You must be signed in to change notification settings - Fork 459
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
How to use micro with two routes? #16
Comments
I think you should use If you want to use |
Hi @sergiodxa thx for your reply, That's not very intuitive to have one route to deal with POST and GET Looks like micro is a nano-service lib and that's totally fine I think |
Micro is just to create HTTP services using async/await and thinking in microservices, it's a wrapper for the Thinking in how made that what about something like this? import micro, {
json,
send,
sendError,
} from 'micro';
/**
* handle POST requests
*/
async function postHandler(request) { /* ... */ }
/**
* handle GET requests
*/
async function getHandler(request) { /* ... */ }
/**
* Check the request method and use postHandler or getHandler (or other method handlers)
*/
async function methodHandler(request, response) {
try {
switch (request.method) {
case 'POST':
return await postHandler(request);
case 'GET':
return await getHandler(request);
default:
send(response, 405, 'Invalid method');
break;
}
} catch (error) {
throw error;
}
}
/**
* our micro service, run methodHandler and send result as a response (or an error)
*/
const server = micro(async (request, response) => {
try {
send(response, 200, await methodHandler(request));
} catch (error) {
sendError(request, response, error);
}
});
server.listen(process.env.PORT); This way you have a function for each valid method. |
@sergiodxa thank you very much for your explanation, I thought doing this would go against micro principals design, And this design totally fit into my Cheers |
@sergiodxa that's a beautiful example. Thank you for contributing it. If you want routes, you can write another We're running 20+ microservices already in production. We had to use routing once, and we simply looked at If you need a sophisticated routing mechanism, you're probably doing too much in one Node process. You'll pay in the form of more complicated debugging, conflated logging and lack of error isolation. |
Based on your example, in fact, I see that you want to do versioning. Not having routing built in is great for this. Let's say |
Great explanation @rauchg I'll think on how to design this on Heroku, I don't have nginx right there, So basically, are you doing in your production servers "one server for one route"? Cheers |
Indeed. I have no experience with Heroku. |
But hey I'm going to remove koajs form some microservices in production and use micro right now \o |
@sergiodxa I'm not sure we have |
@diorahman yes, I just tried it and in the import qs from 'querystring';
import url from 'url';
async function requestHandler(request, response) {
const query = qs.parse(url.parse(request.url).query);
// do something
} |
What about resources? E.g. the user with ID 1 would usually be |
I think you should do that yourself (I suppose with a RegEx), but I will quote @rauchg here:
|
A simple match utility would be nice for that. Not sure if it exists but: const { id } = match('/users/:id', url); would return |
@sergiodxa I don't think that quote applies here. I mean, you wouldn't want a micro service just for getting single users, and then a microservice for getting a list of users, would you? @rauchg Sure, I guess that'd work. |
@sergiodxa You can simplify your one-liner by adding const parsed = url.parse(request.url, true);
console.log(parsed.query); |
Great resources, thanks @TooTallNate! @rauchg Any plans on adding wiki pages with this content? I'm thinking of examples and/or resources. I think it would be beneficial. I think we already have some good ones, they just need a place to be put. |
@onbjerg that sound fantastic. It'd be cool to index the Wiki pages on the README for quick reference as well. PRs welcome |
@rauchg Cool! You just need to enable the wiki first 👍 |
@rauchg Any updates on the wiki? 💃 |
@rauchg I went ahead and created a little utility based on your idea for matching urls. |
Just wanted you guys to know that I have worked a tiny router and architecture suggestions that work great with micro :) https://github.com/domachine/http-service-router |
When your intention is boilerplating, but it is ended up putting to much sugar https://github.com/diorahman/mcrsvc LOL! |
@diorahman To be honest, routes shouldn't really be in a micro-service if possible. Limiting for HTTP method is alright. |
@onbjerg true, yeah. I'm still struggling on how to get the best workflow on building set of services, without sacrificing start time. I still think, when it comes to deployment, api gateway seems the best way (e.g. https://github.com/adobe-apiplatform/apigateway), but how about the development phase? |
For those, who are also looking for a routing solution I'd suggest looking at https://github.com/amio/awesome-micro That repo contains interesting additions to the |
How would I design a service with more then one route?
For example I have a
event-trace-api
service where I trace all transactions in my app and expose a api where I can search for these events,So basically I have 2 routes:
POST /v1/events
GET /v1/events/search
Following micro design I would have 2 separate servers, one for create and other for search, that looks too much for me,
Thanks
The text was updated successfully, but these errors were encountered: