If there are dedicated Front End and Back End programmers, whose job is it to connect them??
For further actions, you may consider blocking this person and/or reporting abuse
If there are dedicated Front End and Back End programmers, whose job is it to connect them??
For further actions, you may consider blocking this person and/or reporting abuse
Nick -
Akshay Rao -
vayola pradeep -
Lorem Impsu -
Once suspended, vickilanger will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, vickilanger will be able to comment and publish posts again.
Once unpublished, all posts by vickilanger will become hidden and only accessible to themselves.
If vickilanger is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Vicki Langer.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag vickilanger:
Unflagging vickilanger will restore default visibility to their posts.
Top comments (5)
Ideally no work will need to be done to connect them. They should be wholly decoupled. They should be implemented with clear interfaces, and whomever designed the project is responsible for ensuring these interfaces are properly designed.
Hmm, that makes sense. But who tells the forms and stuff to do there thing?
Maybe I'm answering my own question, but I guess I've done more with forms doing backend stuff. Frontend wouldn't be worrying about get and post.
You'll still worry about GET and POST on the frontend - what you won't worry about is how those are implemented. You want to be able to post the right data to the right endpoint and then just assume the server's state gets updated properly. Then when you next make a GET, the data returned will reflect any changes youve made, but your frontend code doesn't need to know how or why or what, just what endpoints to hit.
Okay. I think I get it now. Thanks!
Typically frontend consumes API provided by backend (frontend work). In ideal situation integration can be as simple as generate client from API specification, for example GraphQL (or OpenAPI, or grpc).