Introducing Deno A First Look at the Newest JavaScript Runtime — Fernando Doglio Introducing Deno A First Look at the Newest JavaScript Runtime Fernando Doglio Introducing Deno Fernando Doglio El Molar, Madrid, Spain ISBN-13 (pbk): 978-1-4842-6196-5 ISBN-13 (electronic): 978-1-4842-6197-2 https://doi.org/10.1007/978-1-4842-6197-2 Copyright © 2020 by Fernando Doglio This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed. Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights. While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein. Managing Director, Apress Media LLC: Welmoed Spahr Acquisitions Editor: Louise Corrigan Development Editor: James Markham Coordinating Editor: Nancy Chen Cover designed by eStudioCalamar Cover image by cottonbro from Pexels Distributed to the book trade worldwide by Springer Science+Business Media New York, 1 New York Plaza, New York, NY 10004. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer- sbm.com, or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation. For information on translations, please e-mail [email protected]; for reprint, paperback, or audio rights, please e-mail [email protected]. Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook versions and licenses are also available for most titles. For more information, reference our Print and eBook Bulk Sales web page at http://www.apress.com/bulk-sales. Any source code or other supplementary material referenced by the author in this book is available to readers on GitHub via the book’s product page, located at www.apress.com/ 9781484261965. For more detailed information, please visit http://www.apress.com/source-code. Printed on acid-free paper To my wife, who’s been an amazing rock throughout this entire process: You make me a better person. To my kids: You managed to fill a place in my heart I didn’t know I had empty. I love you. Table of Contents About the Author ���������������������������������������������������������������������������������ix About the Technical Reviewer �������������������������������������������������������������xi Acknowledgments �����������������������������������������������������������������������������xiii Introduction ����������������������������������������������������������������������������������������xv Chapter 1: Why Deno? ��������������������������������������������������������������������������1 What problems is it trying to solve? ���������������������������������������������������������������������2 Insecure platform ��������������������������������������������������������������������������������������������3 A problematic module system �������������������������������������������������������������������������3 Other minor issues ������������������������������������������������������������������������������������������4 Trying Deno �����������������������������������������������������������������������������������������������������������5 Online playgrounds ������������������������������������������������������������������������������������������5 Installing Deno on your computer �������������������������������������������������������������������9 What’s so cool about Deno then? ������������������������������������������������������������������������10 TypeScript as a first-class citizen������������������������������������������������������������������10 Security ���������������������������������������������������������������������������������������������������������12 Top-level await ����������������������������������������������������������������������������������������������19 Extended and improved standard library ������������������������������������������������������20 No more npm �������������������������������������������������������������������������������������������������22 Conclusion ����������������������������������������������������������������������������������������������������������25 v Table of ConTenTs Chapter 2: An Introduction to TypeScript �������������������������������������������27 What is TypeScript? ���������������������������������������������������������������������������������������������27 A quick overview of types �����������������������������������������������������������������������������������29 The types you already know ��������������������������������������������������������������������������30 The new types �����������������������������������������������������������������������������������������������31 A note about nullable types and union types�������������������������������������������������37 Classes and interfaces ����������������������������������������������������������������������������������������39 Interfaces ������������������������������������������������������������������������������������������������������40 Working with classes ������������������������������������������������������������������������������������44 TypeScript mixins ������������������������������������������������������������������������������������������������56 Mixins to the rescue! �������������������������������������������������������������������������������������58 Conclusion ����������������������������������������������������������������������������������������������������������62 Chapter 3: Living a Secure Life �����������������������������������������������������������63 Enforcing security �����������������������������������������������������������������������������������������������63 Security flags�������������������������������������������������������������������������������������������������65 Checking for available permissions ��������������������������������������������������������������������72 Conclusion ����������������������������������������������������������������������������������������������������������77 Chapter 4: No More NPM ��������������������������������������������������������������������79 Dealing with external modules ���������������������������������������������������������������������������79 Handling packages ����������������������������������������������������������������������������������������81 Conclusion ����������������������������������������������������������������������������������������������������������94 Chapter 5: Existing Modules ���������������������������������������������������������������95 The Deno STD: The standard library ��������������������������������������������������������������������95 External modules ������������������������������������������������������������������������������������������������99 The official list ���������������������������������������������������������������������������������������������100 With the power of blockchain ����������������������������������������������������������������������103 vi Table of ConTenTs Interesting modules to check out ���������������������������������������������������������������������106 API development ������������������������������������������������������������������������������������������106 Database access �����������������������������������������������������������������������������������������109 Command-line interface ������������������������������������������������������������������������������115 Conclusion ��������������������������������������������������������������������������������������������������������118 Chapter 6: Putting It All Together—Sample Apps ����������������������������119 Deno runner ������������������������������������������������������������������������������������������������������119 The plan �������������������������������������������������������������������������������������������������������121 The code ������������������������������������������������������������������������������������������������������122 Testing your application ������������������������������������������������������������������������������������127 Chat server ��������������������������������������������������������������������������������������������������������131 A simple client ���������������������������������������������������������������������������������������������134 Conclusion ��������������������������������������������������������������������������������������������������������136 Index �������������������������������������������������������������������������������������������������137 vii About the Author Fernando Doglio has been a part of the Software Development industry for the past 16 years. He’s worked on countless web projects, which include (among other things) APIs, Web Services, SPA, Node.js applications, PHP, Ruby, and a lot of JavaScript/HTML/ CSS. He was there when SOAP hit the Web and it was all the rage, and he was also there when XML was the magic X on AJAX. He’s worked with Node.js for several years now, and he’s written several books and countless articles about it, covering everything from the art of designing REST APIs with it to understanding the best design patterns and how they can be implemented with it. Now, working as a Technical Manager, he’s an eager evangelist of using JavaScript for back-end development given how flexible and powerful this language is. You can find him on Twitter @deleteman. ix About the Technical Reviewer Alexander Nnakwue has a background in Mechanical Engineering from the University of Ibadan, Nigeria, and has been a front-end developer for over 3 years working on both web and mobile technologies. He also has experience as a technical author, writer, and reviewer. He enjoys programming for the Web, and occasionally, you can also find him playing soccer. He was born in Benin City and is currently based in Lagos, Nigeria. xi Acknowledgments I’d like to thank the amazing technical reviewer involved in the project, Alexander Nnakwue, whose great feedback was a crucial contribution to the making of this book. I’d also like to thank the rest of the Apress editorial team, whose guidance helped me through the process of writing this book in record time, thus allowing us to release the first book about this new programming language to the public. Thank you! xiii