|
|
|
|
LEADER |
00000cam a2200000 i 4500 |
001 |
OR_on1099253345 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr cnu|||unuuu |
008 |
190426s2019 cau ob 001 0 eng d |
040 |
|
|
|a N$T
|b eng
|e rda
|e pn
|c N$T
|d N$T
|d EBLCP
|d TEFOD
|d UKAHL
|d UMI
|d OCLCF
|d OCLCQ
|d VT2
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|
015 |
|
|
|a GBB998313
|2 bnb
|
016 |
7 |
|
|a 019418981
|2 Uk
|
019 |
|
|
|a 1101443836
|a 1235827838
|a 1240506829
|a 1244442752
|
020 |
|
|
|a 9781492037620
|q (electronic bk.)
|
020 |
|
|
|a 1492037621
|q (electronic bk.)
|
020 |
|
|
|a 9781492037606
|q (electronic bk.)
|
020 |
|
|
|a 1492037605
|q (electronic bk.)
|
020 |
|
|
|a 1492037656
|q (paperback)
|
020 |
|
|
|a 9781492037651
|
020 |
|
|
|z 9781492037651
|
029 |
1 |
|
|a AU@
|b 000065539158
|
035 |
|
|
|a (OCoLC)1099253345
|z (OCoLC)1101443836
|z (OCoLC)1235827838
|z (OCoLC)1240506829
|z (OCoLC)1244442752
|
037 |
|
|
|a 3678B653-00E1-417A-90FD-4C278108A0B9
|b OverDrive, Inc.
|n http://www.overdrive.com
|
050 |
|
4 |
|a QA76.73.T97
|
072 |
|
7 |
|a COM
|x 051010
|2 bisacsh
|
082 |
0 |
4 |
|a 005.2/762
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Cherny, Boris,
|e author.
|
245 |
1 |
0 |
|a Programming TypeScript :
|b making your JavaScript applications scale /
|c Boris Cherny.
|
250 |
|
|
|a First edition.
|
264 |
|
1 |
|a Sebastopol, CA :
|b O'Reilly Media, Inc.,
|c 2019.
|
300 |
|
|
|a 1 online resource
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
500 |
|
|
|a Includes index.
|
520 |
|
|
|a Any programmer working with a dynamically typed language will tell you how hard it is to scale to more lines of code and more engineers. That's why Facebook, Google, and Microsoft invented gradual static type layers for their dynamically typed JavaScript and Python code. This practical book shows you how one such type layer, TypeScript, is unique among them: it makes programming fun with its powerful static type system. If you're a programmer with intermediate JavaScript experience, author Boris Cherny will teach you how to master the TypeScript language. You'll understand how TypeScript can help you eliminate bugs in your code and enable you to scale your code across more engineers than you could before. In this book, you'll:Start with the basics: Learn about TypeScript's different types and type operators, including what they're for and how they're usedExplore advanced topics: Understand TypeScript's sophisticated type system, including how to safely handle errors and build asynchronous programsDive in hands-on: Use TypeScript with your favorite frontend and backend frameworks, migrate your existing JavaScript project to TypeScript, and run your TypeScript application in production
|
588 |
0 |
|
|a Online resource; title from PDF title page (EBSCO, viewed April 29, 2019).
|
505 |
0 |
|
|a Intro; Preface; How This Book Is Organized; Style; Conventions Used in This Book; Using Code Examples; O'Reilly Online Learning; How to Contact Us; Acknowledgments; 1. Introduction; 2. TypeScript: A 10_000 Foot View; The Compiler; The Type System; TypeScript Versus JavaScript; How are types bound?; Are types automatically converted?; When are types checked?; When are errors surfaced?; Code Editor Setup; tsconfig.json; tslint.json; index.ts; Exercises; 3. All About Types; Talking About Types; The ABCs of Types; any; unknown; boolean; number; bigint; string; symbol; Objects
|
505 |
8 |
|
|a Intermission: Type Aliases, Unions, and IntersectionsType aliases; Union and intersection types; Arrays; Tuples; Read-only arrays and tuples; null, undefined, void, and never; Enums; Summary; Exercises; 4. Functions; Declaring and Invoking Functions; Optional and Default Parameters; Rest Parameters; call, apply, and bind; Typing this; Generator Functions; Iterators; Call Signatures; Contextual Typing; Overloaded Function Types; Polymorphism; When Are Generics Bound?; Where Can You Declare Generics?; Generic Type Inference; Generic Type Aliases; Bounded Polymorphism
|
505 |
8 |
|
|a Bounded polymorphism with multiple constraintsUsing bounded polymorphism to model arity; Generic Type Defaults; Type-Driven Development; Summary; Exercises; 5. Classes and Interfaces; Classes and Inheritance; super; Using this as a Return Type; Interfaces; Declaration Merging; Implementations; Implementing Interfaces Versus Extending Abstract Classes; Classes Are Structurally Typed; Classes Declare Both Values and Types; Polymorphism; Mixins; Decorators; Simulating final Classes; Design Patterns; Factory Pattern; Builder Pattern; Summary; Exercises; 6. Advanced Types
|
505 |
8 |
|
|a Relationships Between TypesSubtypes and Supertypes; Variance; Shape and array variance; Function variance; Assignability; Type Widening; The const type; Excess property checking; Refinement; Discriminated union types; Totality; Advanced Object Types; Type Operators for Object Types; The keying-in operator; The keyof operator; The Record Type; Mapped Types; Built-in mapped types; Companion Object Pattern; Advanced Function Types; Improving Type Inference for Tuples; User-Defined Type Guards; Conditional Types; Distributive Conditionals; The infer Keyword; Built-in Conditional Types
|
505 |
8 |
|
|a Escape HatchesType Assertions; Nonnull Assertions; Definite Assignment Assertions; Simulating Nominal Types; Safely Extending the Prototype; Summary; Exercises; 7. Handling Errors; Returning null; Throwing Exceptions; Returning Exceptions; The Option Type; Summary; Exercises; 8. Asynchronous Programming, Concurrency, and Parallelism; JavaScript's Event Loop; Working with Callbacks; Regaining Sanity with Promises; async and await; Async Streams; Event Emitters; Typesafe Multithreading; In the Browser: With Web Workers; Typesafe protocols; In NodeJS: With Child Processes; Summary; Exercises
|
504 |
|
|
|a Includes bibliographical references and index.
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a TypeScript (Computer program language)
|
650 |
|
0 |
|a JavaScript (Computer program language)
|
650 |
|
0 |
|a Application software
|x Development.
|
650 |
|
6 |
|a TypeScript (Langage de programmation)
|
650 |
|
6 |
|a JavaScript (Langage de programmation)
|
650 |
|
6 |
|a Logiciels d'application
|x Développement.
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x General.
|2 bisacsh
|
650 |
|
7 |
|a Application software
|x Development
|2 fast
|
650 |
|
7 |
|a JavaScript (Computer program language)
|2 fast
|
650 |
|
7 |
|a TypeScript (Computer program language)
|2 fast
|
776 |
0 |
8 |
|i Print version:
|a Cherny, Boris.
|t Programming TypeScript.
|b First edition.
|d Sebastopol, CA : O'Reilly Media, Inc., 2019
|w (DLC) 2020304167
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781492037644/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH36278582
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH36222994
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL5760768
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 2110007
|
994 |
|
|
|a 92
|b IZTAP
|