Browse Source

Update basic http routing article

post_vjs2
Levi Olson 6 years ago
parent
commit
fe0650af2a
2 changed files with 0 additions and 3 deletions
  1. +0
    -1
      posts/basic-http-routing-in-golang.html
  2. +0
    -2
      posts/basic-http-routing-in-golang.md

+ 0
- 1
posts/basic-http-routing-in-golang.html View File

@ -1,4 +1,3 @@
<h1 id="basic-http-routing-in-golang">Basic HTTP Routing in Golang</h1>
<p>Golang is incredibly powerful. Its standard library has so much to offer, but I think other languages have encouraged the
use of external libraries for even the most basic tasks. For example, with JavaScript, most inexperienced developers
seem to use jQuery to do simple tasks like selecting an element and replacing its contents. When you and I both know

+ 0
- 2
posts/basic-http-routing-in-golang.md View File

@ -1,5 +1,3 @@
# Basic HTTP Routing in Golang
Golang is incredibly powerful. Its standard library has so much to offer, but I think other languages have encouraged the use of external libraries for even the most basic tasks. For example, with JavaScript, most inexperienced developers seem to use jQuery to do simple tasks like selecting an element and replacing its contents. When you and I both know jQuery is way overkill for such a task. [See my article on Vanilla JS basics.](/coming-soon).
I believe that in order to be considered an expert in a language, you must at least be able to demonstrate using the core language to achieve your goal. In our current case, HTTP routing. Now to be clear, I don't think you need to write everything from scratch all the time, but you should have a firm grasp on what is available by the core language, and when you are better suited to use an external library. If you are looking for more advanced HTTP routing, then I would suggest using something like [gin](https://github.com/gin-gonic/gin).

Loading…
Cancel
Save