- Mastering Reactive JavaScript
- Erich de Souza Oliveira
- 106字
- 2021-07-09 20:33:05
bacon.js
In this first chapter of this book we will be using bacon.js , which is a library for functional reactive programming in JavaScript. This library works in both server and client. We will use it to introduce you to some concepts of functional reactive programming as it is easier to get started. We will be using version 0.7.88.
To install it on your server, just run the following command inside a node project:
npm i baconjs@0.7.88 -save
To add it to an HTML page, just paste the following code snippet inside it:
<script src="https://cdnjs.cloudflare.com/ajax/libs/bacon.js/0.7.88/Bacon.min.js">
</script>
Don't worry with the version not being above 1.x; bacon.js is stable.
推薦閱讀
- Mastering vRealize Operations Manager(Second Edition)
- 阿里云數字新基建系列:云原生操作系統Kubernetes
- WordPress Mobile Web Development:Beginner's Guide
- BPEL and Java Cookbook
- 精通Linux內核開發
- 深入Linux內核架構與底層原理(第2版)
- Windows Vista融會貫通
- Linux操作系統應用編程
- macOS效率手冊
- Advanced TypeScript Programming Projects
- 從零開始學安裝與重裝系統
- Linux軟件管理平臺設計與實現
- Implementing Domain-Specific Languages with Xtext and Xtend(Second Edition)
- 每天5分鐘玩轉Docker容器技術
- 程序員必讀經典(算法基礎+計算機系統)