Personnaliser

OK

Node.js - Springer, Sebastian

Note : 0

0 avis
  • Soyez le premier à donner un avis

Vous en avez un à vendre ?

Vendez-le-vôtre
Filtrer par :

61,77 €

Produit Neuf

  • Ou 15,44 € /mois

    • Livraison : 3,99 €
    • Livré entre le 30 mai et le 3 juin
    Voir les modes de livraison

    M_plus_L

    PRO Vendeur favori

    4,8/5 sur + de 1 000 ventes

    Nos autres offres

    • 55,62 €

      Produit Neuf

      Ou 13,91 € /mois

      • Livraison à 0,01 €
      Voir les modes de livraison
      4,7/5 sur + de 1 000 ventes

      Nouvel article expédié dans le 24H à partir des Etats Unis Livraison au bout de 20 à 30 jours ouvrables.

      Voir le détail de l'annonce 
    • 61,77 €

      Produit Neuf

      Ou 15,44 € /mois

      • Livraison : 3,99 €
      • Livré entre le 30 mai et le 3 juin
      Voir les modes de livraison
      4,8/5 sur + de 1 000 ventes
      Voir le détail de l'annonce 
    • 71,06 €

      Produit Neuf

      Ou 17,77 € /mois

      • Livraison à 0,01 €
      Voir les modes de livraison
      4,8/5 sur + de 1 000 ventes

      Expédition rapide et soignée depuis l`Angleterre - Délai de livraison: entre 10 et 20 jours ouvrés.

      Voir le détail de l'annonce 
    Publicité
     
    Vous avez choisi le retrait chez le vendeur à
    • Payez directement sur Rakuten (CB, PayPal, 4xCB...)
    • Récupérez le produit directement chez le vendeur
    • Rakuten vous rembourse en cas de problème

    Gratuit et sans engagement

    Félicitations !

    Nous sommes heureux de vous compter parmi nos membres du Club Rakuten !

    En savoir plus

    Retour

    Horaires

        Note :


        Avis sur Node.Js de Springer, Sebastian Format Broché  - Livre Informatique

        Note : 0 0 avis sur Node.Js de Springer, Sebastian Format Broché  - Livre Informatique

        Les avis publiés font l'objet d'un contrôle automatisé de Rakuten.


        Présentation Node.Js de Springer, Sebastian Format Broché

         - Livre Informatique

        Livre Informatique - Springer, Sebastian - 01/01/2023 - Broché - Langue : Anglais

        . .

      • Auteur(s) : Springer, Sebastian
      • Editeur : Rheinwerk Publishing Inc.
      • Langue : Anglais
      • Parution : 01/01/2023
      • Format : Moyen, de 350g à 1kg
      • Nombre de pages : 834
      • Expédition : 1458
      • Dimensions : 25.3 x 17.8 x 4.2
      • ISBN : 1493222929



      • Résumé :

        If you're developing server-side JavaScript applications, you need Node.js! Start with the basics of the Node.js environment: installation, application structure, and modules. Then follow detailed code examples to learn about web development using frameworks like Express and Nest.js. Learn about different approaches to asynchronous programming, including RxJS and data streams. Details on peripheral topics such as testing, security, performance, and more, make this your all-in-one daily reference for Node.js!

        ?Your complete guide to backend programming with JavaScript

        ?Install the Node.js environment and learn to use core frameworks

        ?Debug, scale, test, and optimize your applications

        ?Get practical code examples as downloadable product supplements

        This book includes:

        1)More than 800 pages on Node.js

        2)Concrete solutions for practical use cases

        3)Detailed, numbered code listings

        4)Tables, figures, note boxes, and screenshots

        5)A comprehensive index

        6)All code examples available as downloadable supplements

        Highlights:

        • Installation
        • Asynchronous programming
        • Application development
        • Modules
        • Express and Nest.js frameworks
        • Template engines
        • Database connectivity
        • Web sockets
        • Session handling
        • Deployment and operations
        • Security
        • Testing, performance, and scalability
        ...

        Biographie:
        Sebastian Springer is a JavaScript engineer at MaibornWolff. In addition to developing and designing both client-side and server-side JavaScript applications, he focuses on imparting knowledge. As a lecturer for JavaScript, a speaker at numerous conferences, and an author, he inspires enthusiasm for professional development with JavaScript. Sebastian was previously a team leader at Mayflower GmbH, one of the premier web development agencies in Germany. He was responsible for project and team management, architecture, and customer care for companies such as Nintendo Europe, Siemens, and others.

        Sommaire:

        ... Foreword ... 25

        ... Preface ... 27

        ... Structure of the Book ... 28

        ... Downloading the Code Samples ... 29

        ... Acknowledgments ... 30

        1 ... Basic Principles ... 31

        1.1 ... The Story of Node.js ... 33

        1.2 ... Organization of Node.js ... 37

        1.3 ... Versioning of Node.js ... 38

        1.4 ... Benefits of Node.js ... 40

        1.5 ... Areas of Use for Node.js ... 40

        1.6 ... The Core: V8 Engine ... 41

        1.7 ... Libraries around the Engine ... 47

        1.8 ... Summary ... 53

        2 ... Installation ... 55

        2.1 ... Installing Packages ... 56

        2.2 ... Compiling and Installing ... 68

        2.3 ... Node Version Manager ... 71

        2.4 ... Node and Docker ... 71

        2.5 ... Summary ... 72

        3 ... Developing Your First Application ... 73

        3.1 ... Interactive Mode ... 73

        3.2 ... The First Application ... 79

        3.3 ... Debugging Node.js Applications ... 88

        3.4 ... nodemon Development Tool ... 98

        3.5 ... Summary ... 99

        4 ... Node.js Modules ... 101

        4.1 ... Modular Structure ... 101

        4.2 ... Core Modules ... 103

        4.3 ... JavaScript Module Systems ... 121

        4.4 ... Creating and Using Your Own Modules ... 124

        4.5 ... Summary ... 135

        5 ... HTTP ... 137

        5.1 ... Web Server ... 137

        5.2 ... Node.js as HTTP Client ... 164

        5.3 ... Secure Communication with HTTPS ... 168

        5.4 ... HTTP/2 ... 170

        5.5 ... Summary ... 175

        6 ... Express ... 177

        6.1 ... Structure ... 177

        6.2 ... Installation ... 178

        6.3 ... Basic Principles ... 179

        6.4 ... Setup ... 181

        6.5 ... Movie Database ... 185

        6.6 ... Middleware ... 193

        6.7 ... Extended Routing: Deleting Data Records ... 199

        6.8 ... Creating and Editing Data Records: Body Parser ... 201

        6.9 ... Express 5 ... 208

        6.10 ... HTTPS and HTTP/2 ... 209

        6.11 ... Summary ... 212

        7 ... Template Engines ... 213

        7.1 ... Custom Template Engine ... 214

        7.2 ... Template Engines in Practice: Pug ... 215

        7.3 ... Handlebars ... 229

        7.4 ... Summary ... 239

        8 ... Connecting Databases ... 241

        8.1 ... Node.js and Relational Databases ... 242

        8.2 ... Node.js and Nonrelational Databases ... 260

        8.3 ... Summary ... 272

        9 ... Authentication and Session Handling ... 273

        9.1 ... Passport ... 273

        9.2 ... Setup and Configuration ... 274

        9.3 ... Logging In to the Application ... 277

        9.4 ... Accessing Resources ... 285

        9.5 ... Summary ... 294

        10 ... REST Server ... 295

        10.1 ... Introduction to REST and Usage in Web Applications ... 295

        10.2 ... Accessing the Application ... 296

        10.3 ... Adaptations to the Application Structure ... 297

        10.4 ... Read Requests ... 298

        10.5 ... Write Requests ... 309

        10.6 ... Authentication via JWTs ... 316

        10.7 ... OpenAPI Specification: Documentation with Swagger ... 324

        10.8 ... Validation ... 329

        10.9 ... Summary ... 335

        11 ... GraphQL ... 337

        11.1 ... GraphQL Libraries ... 338

        11.2 ... Integration with Express ... 339

        11.3 ... GraphiQL ... 341

        11.4 ... Reading Data via the Interface ... 342

        11.5 ... Write Accesses to the GraphQL Interface ... 347

        11.6 ... Authentication for the GraphQL Interface ... 353

        11.7 ... Summary ... 355

        12 ... Real-...

        Détails de conformité du produit

        Consulter les détails de conformité de ce produit (

        Personne responsable dans l'UE

        )
        Le choixNeuf et occasion
        Minimum5% remboursés
        La sécuritéSatisfait ou remboursé
        Le service clientsÀ votre écoute
        LinkedinFacebookTwitterInstagramYoutubePinterestTiktok
        visavisa
        mastercardmastercard
        klarnaklarna
        paypalpaypal
        floafloa
        americanexpressamericanexpress
        Rakuten Logo
        • Rakuten Kobo
        • Rakuten TV
        • Rakuten Viber
        • Rakuten Viki
        • Plus de services
        • À propos de Rakuten
        Rakuten.com