Go Web Development Cookbook
Total Page:16
File Type:pdf, Size:1020Kb
Go Web Development Cookbook Build full-stack web applications with Go Arpit Aggarwal BIRMINGHAM - MUMBAI Go Web Development Cookbook Copyright © 2018 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. Commissioning Editor: Ashwin Nair Acquisition Editor: Denim Pinto Content Development Editor: Nikhil Borkar Technical Editor: Jash Bavishi Copy Editor: Safis Editing Project Coordinator: Ulhas Kambali Proofreader: Safis Editing Indexer: Mariammal Chettiyar Graphics: Tania Dutta Production Coordinator: Aparna Bhagat First published: April 2018 Production reference: 1200418 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78728-674-0 www.packtpub.com To my mother, Anita Aggarwal, and to the memory of my father, Anil Aggarwal, for their sacrifices and for exemplifying the power of determination mapt.io Mapt is an online digital library that gives you full access to over 5,000 books and videos, as well as industry leading tools to help you plan your personal development and advance your career. For more information, please visit our website. Why subscribe? Spend less time learning and more time coding with practical eBooks and Videos from over 4,000 industry professionals Improve your learning with Skill Plans built especially for you Get a free eBook or video every month Mapt is fully searchable Copy and paste, print, and bookmark content PacktPub.com Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at www.PacktPub.com and as a print book customer, you are entitled to a discount on the eBook copy. Get in touch with us at [email protected] for more details. At www.PacktPub.com, you can also read a collection of free technical articles, sign up for a range of free newsletters, and receive exclusive discounts and offers on Packt books and eBooks. Contributors About the author Arpit Aggarwal is a programmer with over 7 years of industry experience in software analysis, design, effort estimation, development, troubleshooting, testing, and supporting web applications. He is among the top contributors of StackOverflow with more than 9,000 reputation and more than 100 badges in multiple areas such as Java, Scala, Go, Spring, Spring-MVC, GiT, Angular, Unit Testing, Web Services, and Docker, and has written many technical articles for Java Code Geeks, System Code Geeks, Web Code Geeks, and DZone. About the reviewer Anshul Joshi is a data science professional with experience primarily in data munging, recommendation systems, predictive modeling, and distributed computing. He has worked on Spark and Hadoop ecosystems. He is a deep learning and AI enthusiast and holds degrees in computer science and data analytics. Most of the time, he can be caught exploring GitHub or trying anything new that he can get his hands on. Packt is searching for authors like you If you're interested in becoming an author for Packt, please visit authors.packtpub.com and apply today. We have worked with thousands of developers and tech professionals, just like you, to help them share their insight with the global tech community. You can make a general application, apply for a specific hot topic that we are recruiting an author for, or submit your own idea. Table of Contents Title Page Copyright and Credits Go Web Development Cookbook Dedication Packt Upsell Why subscribe? PacktPub.com Contributors About the author About the reviewer Packt is searching for authors like you Preface Who this book is for What this book covers To get the most out of this book Download the example code files Download the color images Conventions used Sections Getting ready How to do it… How it works… There's more… See also Get in touch Reviews 1. Creating Your First Server in Go Introduction Creating a simple HTTP server How to do it… How it works… Implementing basic authentication on a simple HTTP server Getting ready How to do it… How it works… Optimizing HTTP server responses with GZIP compression How to do it… How it works… Creating a simple TCP server How to do it… How it works… Reading data from a TCP connection Getting ready… How to do it… How it works… Writing data to a TCP connection Getting ready… How to do it… How it works… Implementing HTTP request routing How to do it… How it works… Implementing HTTP request routing using Gorilla Mux How to do it… How it works… Logging HTTP requests Getting Ready… How to do it… How it works… 2. Working with Templates, Static Files, and HTML Forms Introduction Creating your first template How to do it… How it works… Serving static files over HTTP Getting ready… How to do it… How it works… Serving static files over HTTP using Gorilla Mux Getting ready… How to do it… How it works… Creating your first HTML form How to do it… How it works… Reading your first HTML form Getting ready… How to do it… How it works… Validating your first HTML form Getting ready… How to do it… How it works… Uploading your first file How to do it… How it works… 3. Working with Sessions, Error Handling, and Caching in Go Introduction Creating your first HTTP session How to do it… How it works… Managing your HTTP session using Redis Getting ready… How to do it… How it works… Creating your first HTTP cookie How to do it… How it works… Implementing caching in Go How to do it… How it works… Implementing HTTP error handling in Go How to do it… How it works… Implementing login and logout in web application Getting ready… How to do it… How it works… 4. Writing and Consuming RESTful Web Services in Go Introduction Creating your first HTTP GET method How to do it… How it works… Creating your first HTTP POST method How to do it… How it works… Creating your first HTTP PUT method How to do it… How it works… Creating your first HTTP DELETE method How to do it… How it works… Versioning your REST API How to do it… How it works… Creating your first REST client Getting ready… How to do it… How it works… Creating your first AngularJS Client Getting ready… How to do it… How it works… Creating your first ReactJS client Getting ready… How to do it… How it works… Creating your first VueJS client Getting ready… How to do it… How it works… 5. Working with SQL and NoSQL Databases Introduction Integrating MySQL and Go Getting ready… How to do it… How it works… Creating your first record in MySQL Getting ready… How to do it… How it works… Reading records from MySQL How to do it… How it works… Updating your first record in MySQL How to do it… How it works… Deleting your first record from MySQL How to do it… How it works… Integrating MongoDB and Go Getting ready… How to do it… How it works… Creating your first document in MongoDB How to do it… How it works… Reading documents from MongoDB How to do it… How it works… Updating your first document in MongoDB How to do it… How it works… Deleting your first document from MongoDB How to do it… How it works… 6. Writing Microservices in Go Using Micro – a Microservice Toolkit Introduction Creating your first protocol buffer Getting ready… How to do it… How it works… Spinning up a microservice discovery client Getting ready… How to do it… How it works… Creating your first microservice Getting ready… How to do it… How it works… Creating your second microservice How to do it… How it works… Creating your Micro API Getting ready… How to do it… How it works… Interacting with microservices using a command-line interface and web UI How to do it… How it works… 7. Working with WebSocket in Go Introduction Creating your first WebSocket server How to do it… How it works… Creating your first WebSocket client How to do it… How it works… Debugging your first local WebSocket server Getting ready… How to do it… How it works… Debugging your first remote WebSocket server How to do it… How it works… Unit testing your first WebSocket server How to do it… How it works… 8.