• Wyszukiwanie zaawansowane
  • Kategorie
  • Kategorie BISAC
  • Książki na zamówienie
  • Promocje
  • Granty
  • Książka na prezent
  • Opinie
  • Pomoc
  • Załóż konto
  • Zaloguj się

Introducing ReScript: Functional Programming for Web Applications » książka

zaloguj się | załóż konto
Logo Krainaksiazek.pl

koszyk

konto

szukaj
topmenu
Księgarnia internetowa
Szukaj
Książki na zamówienie
Promocje
Granty
Książka na prezent
Moje konto
Pomoc
 
 
Wyszukiwanie zaawansowane
Pusty koszyk
Bezpłatna dostawa dla zamówień powyżej 20 złBezpłatna dostawa dla zamówień powyżej 20 zł

Kategorie główne

• Nauka
 [2939893]
• Literatura piękna
 [1808953]

  więcej...
• Turystyka
 [70366]
• Informatyka
 [150555]
• Komiksy
 [35137]
• Encyklopedie
 [23160]
• Dziecięca
 [608786]
• Hobby
 [136447]
• AudioBooki
 [1631]
• Literatura faktu
 [225099]
• Muzyka CD
 [360]
• Słowniki
 [2914]
• Inne
 [442115]
• Kalendarze
 [1068]
• Podręczniki
 [166599]
• Poradniki
 [468390]
• Religia
 [506548]
• Czasopisma
 [506]
• Sport
 [61109]
• Sztuka
 [241608]
• CD, DVD, Video
 [3308]
• Technologie
 [218981]
• Zdrowie
 [98614]
• Książkowe Klimaty
 [124]
• Zabawki
 [2174]
• Puzzle, gry
 [3275]
• Literatura w języku ukraińskim
 [260]
• Art. papiernicze i szkolne
 [7376]
Kategorie szczegółowe BISAC

Introducing ReScript: Functional Programming for Web Applications

ISBN-13: 9781484288870 / Angielski / Miękka / 2022 / 263 str.

Danny Yang
Introducing ReScript: Functional Programming for Web Applications Danny Yang 9781484288870 Apress - książkaWidoczna okładka, to zdjęcie poglądowe, a rzeczywista szata graficzna może różnić się od prezentowanej.

Introducing ReScript: Functional Programming for Web Applications

ISBN-13: 9781484288870 / Angielski / Miękka / 2022 / 263 str.

Danny Yang
cena 140,53
(netto: 133,84 VAT:  5%)

Najniższa cena z 30 dni: 134,90
Termin realizacji zamówienia:
ok. 22 dni roboczych.

Darmowa dostawa!

This book serves as a succinct guide on ReScript, a functional language for building web applications. Using examples of ReScript language features along with explanations of fundamental concepts in functional programming, this book will show web developers with a background in JavaScript how to effectively use ReScript to its full potential.InIntroducing ReScript, you'll learn how to use features in ReScript that  JavaScript lacks, such as type inference, null-safety, algebraic data types, pattern matching, and more. Along the way, you'll pick up functional programming concepts like immutability and higher-order functions. You'll also gain a sense of how ReScript works under the hood and how to leverage interoperability between ReScript and JavaScript.Whether you're a web developer interested in dabbling with functional programming or you just want to learn how to write safer and cleaner code for web applications, this book is a great way for you to get started with ReScript.What You Will LearnUse ReScript to write clean, safe, and elegant softwareUnderstand the features of ReScript that set it apart from JavaScript, such as type inference, null-safety, and algebraic data typesExplore functional programming concepts like immutabhigher-orderr order functions, and pattern matchingUse popular JavaScript libraries and frameworks in your ReScript code and integrate ReScript code into JavaScript codebasesWho This Book Is ForWeb developers that want a strictly typed, safer alternative to JavaScript, as well as web developers interested in learning functional programming and leveraging the elegant and powerful functional features in ReScript.

This book serves as a succinct guide on ReScript, a functional language for building web applications. Using examples of ReScript language features along with explanations of fundamental concepts in functional programming, this book will show web developers with a background in JavaScript how to effectively use ReScript to its full potential.

In Introducing ReScript, you'll learn how to use features in ReScript that  JavaScript lacks, such as type inference, null-safety, algebraic data types, pattern matching, and more. Along the way, you'll pick up functional programming concepts like immutability and higher-order functions. You'll also gain a sense of how ReScript works under the hood and how to leverage interoperability between ReScript and JavaScript.  

Whether you're a web developer interested in dabbling with functional programming or you just want to learn how to write safer and cleaner code for web applications, this book is a great way for you to get started with ReScript.

What You Will Learn

  • Use ReScript to write clean, safe, and elegant software
  • Understand the features of ReScript that set it apart from JavaScript, such as type inference, null-safety, and algebraic data types
  • Explore functional programming concepts like immutabhigher-orderr order functions, and pattern matching
  • Use popular JavaScript libraries and frameworks in your ReScript code and integrate ReScript code into JavaScript codebases

Who This Book Is For

Web developers that want a strictly typed, safer alternative to JavaScript, as well as web developers interested in learning functional programming and leveraging the elegant and powerful functional features in ReScript.

Kategorie:
Informatyka, Bazy danych
Kategorie BISAC:
Computers > Internet - Web Programming
Computers > Programming - Open Source
Wydawca:
Apress
Język:
Angielski
ISBN-13:
9781484288870
Rok wydania:
2022
Dostępne języki:
Ilość stron:
263
Waga:
0.41 kg
Wymiary:
23.39 x 15.6 x 1.52
Oprawa:
Miękka
Dodatkowe informacje:
Wydanie ilustrowane

Chapter 1, Intro

Chapter Goal: Learn what functional programming is, and the background of the ReScript language
● What is ReScript?
● Why should you learn ReScript?
● What is functional programming?
● Why should you learn functional programming?
Chapter 2, Basics
Chapter Goal: Learn the basic features of ReScript, like expressions and operators
- Development environment setup
- Hello, World in ReScript
- Expressions
- Operators
- If expressions
- Let expressions
- Printing and debugging
Chapter 3, Functions
Chapter Goal: learn how functions work in ReScript
- Defining a function
- Applying a function
- Polymorphic functions
- Anonymous functions
Chapter 4, Lists and Arrays
Chapter Goal: learn the data structures for ordered data in ReScript, learn about immutable data structures
- Building a list
- Accessing a list
- Mutating a list
- Arrays and mutability
- Iteration
Chapter 5, Records and Objects
Chapter Goal: learn the ways to represent composite data types in ReScript
- Records
- Objects
Chapter 6, Pattern Matching and Destructuring
Chapter Goal: learn one of ReScript's most powerful features and how to work with the shape of your data
- Pattern matching/switch
- Destructuring with let
- Destructuring in functions
Chapter 7, Algebraic Data Types
Chapter Goal: learn how represent complex data in ReScript's type system
- Variants
- Polymorphic Variants
- Options
- Tuples
Chapter 8, Higher Order Programming
Chapter Goal:
- Higher order functions
- Map
- Filter
- Reduce
- Generalizing to other data structures
- Piping
- Currying
Chapter 9, Modules
Chapter Goal: Introduce modules in ReScript, and how they can be used for higher order programming
- What are modules
- Scope/visibility
- Signature
- Import/Export
- Functors
Chapter 10, Using ReScript in Production
Chapter Goal: learn about ReScript's interoperability with JavaScript
- Calling ReScript from JavaScript
- Calling JavaScript from ReScript
- Embedding JavaScript in ReScript
- Working with DOM
- Working with JSON
- Runtime representation

Danny Yang is a professional software engineer at Meta working on infrastructure for WhatsApp. He has previously worked on Facebook Messenger, including the web interface which was written in ReScript. His technical interests include functional programming, compilers, and data visualization, which he writes about on his blog. 

This book serves as a succinct guide on ReScript, a functional language for building web applications. Using examples of ReScript language features along with explanations of fundamental concepts in functional programming, this book will show web developers with a background in JavaScript how to effectively use ReScript to its full potential.

In Introducing ReScript, you'll learn how to use features in ReScript that  JavaScript lacks, such as type inference, null-safety, algebraic data types, pattern matching, and more. Along the way, you'll pick up functional programming concepts like immutability and higher-order functions. You'll also gain a sense of how ReScript works under the hood and how to leverage interoperability between ReScript and JavaScript.  

Whether you're a web developer interested in dabbling with functional programming or you just want to learn how to write safer and cleaner code for web applications, this book is a great way for you to get started with ReScript.

You will:

  • Use ReScript to write clean, safe, and elegant software
  • Understand the features of ReScript that set it apart from JavaScript, such as type inference, null-safety, and algebraic data types
  • Explore functional programming concepts like immutabhigher-orderr order functions, and pattern matching
  • Use popular JavaScript libraries and frameworks in your ReScript code and integrate ReScript code into JavaScript codebases



Udostępnij

Facebook - konto krainaksiazek.pl



Opinie o Krainaksiazek.pl na Opineo.pl

Partner Mybenefit

Krainaksiazek.pl w programie rzetelna firma Krainaksiaze.pl - płatności przez paypal

Czytaj nas na:

Facebook - krainaksiazek.pl
  • książki na zamówienie
  • granty
  • książka na prezent
  • kontakt
  • pomoc
  • opinie
  • regulamin
  • polityka prywatności

Zobacz:

  • Księgarnia czeska

  • Wydawnictwo Książkowe Klimaty

1997-2026 DolnySlask.com Agencja Internetowa

© 1997-2022 krainaksiazek.pl
     
KONTAKT | REGULAMIN | POLITYKA PRYWATNOŚCI | USTAWIENIA PRYWATNOŚCI
Zobacz: Księgarnia Czeska | Wydawnictwo Książkowe Klimaty | Mapa strony | Lista autorów
KrainaKsiazek.PL - Księgarnia Internetowa
Polityka prywatnosci - link
Krainaksiazek.pl - płatnośc Przelewy24
Przechowalnia Przechowalnia