Cargando…

Mastering Modular JavaScript /

"If you have a working knowledge of JavaScript and ECMAScript 6 (ES6), this practical guide will help you tackle modular programming to produce code that's readable, maintainable, and scalable. You'll learn the fundamentals of modular architecture with JavaScript and the benefits of w...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Bevacqua, Nicolas (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Sebastopol, CA : O'Reilly Media, Inc., 2018.
Edición:First edition.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_on1050110380
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu|||unuuu
008 180828s2018 cau ob 001 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d N$T  |d YDX  |d EBLCP  |d TEFOD  |d OCLCF  |d MOQ  |d IU0  |d ESU  |d UKAHL  |d MNW  |d C6I  |d UMI  |d OCLCQ  |d OCLCO  |d NZAUC  |d OCLCQ 
019 |a 1050336615  |a 1119557525 
020 |a 9781491955659  |q (electronic bk.) 
020 |a 1491955651  |q (electronic bk.) 
020 |a 9781491955635  |q (electronic bk.) 
020 |a 1491955635  |q (electronic bk.) 
020 |z 9781491955680 
020 |z 1491955686 
029 1 |a AU@  |b 000065314314 
029 1 |a AU@  |b 000066232272 
035 |a (OCoLC)1050110380  |z (OCoLC)1050336615  |z (OCoLC)1119557525 
037 |a CE6FD23A-70F2-47C3-A68E-DDA3931A7AD5  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.637 
072 7 |a COM  |x 051000  |2 bisacsh 
072 7 |a COM  |x 051260  |2 bisacsh 
082 0 4 |a 005.1/12  |2 23 
049 |a UAMI 
100 1 |a Bevacqua, Nicolas,  |e author. 
245 1 0 |a Mastering Modular JavaScript /  |c Nicolás Bevacqua. 
250 |a First edition. 
264 1 |a Sebastopol, CA :  |b O'Reilly Media, Inc.,  |c 2018. 
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 
588 |a Online resource; title from PDF title page (EBSCO, viewed August 29, 2018). 
500 |a Includes index. 
520 |a "If you have a working knowledge of JavaScript and ECMAScript 6 (ES6), this practical guide will help you tackle modular programming to produce code that's readable, maintainable, and scalable. You'll learn the fundamentals of modular architecture with JavaScript and the benefits of writing self-contained code at every system level, including the client and server. Nicolás Bevacqua, author of Practical Modern JavaScript, demonstrates how to scale out JavaScript applications by breaking codebases into smaller modules. By following the design practices in this book, senior developers, technical leaders, and software architects will learn how to create modules that are simple and flexible while keeping internal complexity in check. Learn modular design essentials, including how your application will be consumed and what belongs on the interfaceDesign module internals to keep your code readable and its intent clearReduce complexity by refactoring code and containing and eliminating stateTake advantage of modern JavaScript features to write clear programs and reduce complexityApply Twelve-Factor App principles to frontend and backend JavaScript application development"--  |c Provided by publisher. 
505 0 |a Module thinking -- Modularity principles -- Module design -- Shaping internals -- Modular patterns and practices -- Development methodology and philosophy. 
505 0 |a Intro; Copyright; Table of Contents; Preface; Section 1. Who Should Read This Book; Section 2. Why Modular JavaScript?; Section 3. How Is This Book Organized?; Section 4. Conventions Used in This Book; Section 5. O'Reilly Safari; Section 6. How to Contact Us; Section 7. Acknowledgments; Chapter 1. Module Thinking; 1.1 Introduction to Module Thinking; 1.2 A Brief History of Modularity; 1.2.1 Script Tags and Closures; 1.2.2 RequireJS, AngularJS, and Dependency Injection; 1.2.3 Node.js and the Advent of CommonJS; 1.2.4 ES6, import, Babel, and Webpack; 1.3 The Perks of Modular Design 
505 8 |a 1.4 Modular Granularity1.5 Modular JavaScript: A Necessity; Chapter 2. Modularity Principles; 2.1 Modular Design Essentials; 2.1.1 Single Responsibility Principle; 2.1.2 API First; 2.1.3 Revealing Pattern; 2.1.4 Finding the Right Abstractions; 2.1.5 State Management; 2.2 CRUST: Consistent, Resilient, Unambiguous, Simple, and Tiny; 2.2.1 Consistency; 2.2.2 Resiliency; 2.2.3 Unambiguity; 2.2.4 Simplicity; 2.2.5 Tiny Surface Areas; Chapter 3. Module Design; 3.1 Growing a Module; 3.1.1 Composability and Scalability; 3.1.2 Design for Today; 3.1.3 Abstractions Evolve in Small Steps 
505 8 |a 3.1.4 Move Deliberately and Experiment3.2 CRUST Considerations; 3.2.1 Do Repeat Yourself, Occasionally; 3.2.2 Feature Isolation; 3.2.3 Trade-Offs When Designing Internals; 3.3 Pruning a Module; 3.3.1 Error Handling, Mitigation, Detection, and Solving; 3.3.2 Documentation as an Art; 3.3.3 Removing Code; 3.3.4 Applying Context; Chapter 4. Shaping Internals; 4.1 Internal Complexity; 4.1.1 Containing Nested Complexity; 4.1.2 Feature Entanglement and Tight Coupling; 4.1.3 Frameworks: The Good, the Bad, and the Ugly; 4.2 Refactoring Complex Code; 4.2.1 Embracing Variables over Clever Code 
505 8 |a 4.2.2 Guard Clauses and Branch Flipping4.2.3 An Interdependency Pyramid; 4.2.4 Extracting Functions; 4.2.5 Flattening Nested Callbacks; 4.2.6 Factoring Similar Tasks; 4.2.7 Slicing Large Functions; 4.3 State as Entropy; 4.3.1 Current State: It's Complicated; 4.3.2 Eliminating Incidental State; 4.3.3 Containing State; 4.3.4 Leveraging Immutability; 4.4 Data Structures Are King; 4.4.1 Isolating Data and Logic; 4.4.2 Restricting and Clustering Logic; Chapter 5. Modular Patterns and Practices; 5.1 Leveraging Modern JavaScript; 5.1.1 Template Literals; 5.1.2 Destructuring, Rest, and Spread 
505 8 |a 5.1.3 Striving for Simple const Bindings5.1.4 Navigating Callbacks, Promises, and Asynchronous Functions; 5.2 Composition and Inheritance; 5.2.1 Inheritance Through Classes; 5.2.2 The Perks of Composition: Aspects and Extensions; 5.2.3 Choosing Between Composition and Inheritance; 5.3 Code Patterns; 5.3.1 Revealing Module; 5.3.2 Object Factories; 5.3.3 Event Emission; 5.3.4 Message Passing and the Simplicity of JSON; Chapter 6. Development Methodology and Philosophy; 6.1 Secure Configuration Management; 6.2 Explicit Dependency Management; 6.3 Interfaces as Black Boxes; 6.4 Build, Release, Run 
504 |a Includes bibliographical references and index. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Modular programming. 
650 0 |a JavaScript (Computer program language) 
650 6 |a Programmation modulaire. 
650 6 |a JavaScript (Langage de programmation) 
650 7 |a COMPUTERS  |x Programming  |x General.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x JavaScript.  |2 bisacsh 
650 7 |a JavaScript (Computer program language)  |2 fast  |0 (OCoLC)fst00982071 
650 7 |a Modular programming.  |2 fast  |0 (OCoLC)fst01024506 
776 0 8 |i Print version:  |z 1491955686  |z 9781491955680  |w (OCoLC)1013176103 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781491955673/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH35137185 
938 |a Askews and Holts Library Services  |b ASKH  |n AH35109451 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL5500291 
938 |a EBSCOhost  |b EBSC  |n 1878844 
938 |a YBP Library Services  |b YANK  |n 15674177 
994 |a 92  |b IZTAP