Book Image

Go for Web Development [Video]

By : Larry Price
Book Image

Go for Web Development [Video]

By: Larry Price

Overview of this book

<p>Go is on the rise and showing itself as a powerful option in many software development domains. For web developers seriously considering adopting the language on the server side, Go comes with a very strong and accessible standard library. It makes setting up the architecture for web applications a comfortable experience, and provides a growing ecosystem of tools, libraries, and frameworks that can help you build web applications for delivery on the web.</p> <p>Go for Web Development gets you started with web development in the language, opening with the classic "Hello world" through building an application with a strongly designed database backend, useful middleware, UI with an intelligent search function, multi-user authentication, and more.</p> <p>We'll start off by building a web server with Go’s extensive standard library. You’ll learn the concepts of a single page web application and create a dynamic user interface using templates, manipulate a database, and use powerful encryption algorithms to implement an authentication system. We'll also start to incorporate more functionalities by calling out to external libraries from our database. When we've put everything together, we'll show you how package it all up and deploy it into the wild using Heroku.</p> <h1>Style and approach</h1> <p>This course provides a step-by-step introduction to the tools, frameworks, and libraries you will use for web development with Go, and the tasks you will carry out to build a web project.</p>
Table of Contents (6 chapters)
Chapter 5
Different Folks, Different Libraries
Content Locked
Section 2
Creating Users Securely
We do not want to store user passwords as plain text in our database. We'll use an encryption library to build secure password hashes for users. - Get bcrypt - Create a users table - Store users in the database