All Projects → bahmutov → Javascript Journey

bahmutov / Javascript Journey

Source code for blog post Journey from procedural to reactive JavaScript with stops

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Javascript Journey

Annotation Processing Example
It is the example project for the annotation processing tutorial.
Stars: ✭ 116 (-62.46%)
Mutual labels:  tutorial, example
Learning Cmake
learning cmake
Stars: ✭ 2,524 (+716.83%)
Mutual labels:  tutorial, example
Godot tutorials
Code and examples for KidsCanCode Godot Tutorials.
Stars: ✭ 119 (-61.49%)
Mutual labels:  tutorial, example
Deep Learning Based Ecg Annotator
Annotation of ECG signals using deep learning, tensorflow’ Keras
Stars: ✭ 110 (-64.4%)
Mutual labels:  tutorial, example
Lv examples
Examples, tutorials and applications for the LVGL embedded GUI library
Stars: ✭ 246 (-20.39%)
Mutual labels:  tutorial, example
React Redux Boilerplate
It is a boilerplate of React-Redux as the infrastructure, which helps to setup a Web APP quickly
Stars: ✭ 113 (-63.43%)
Mutual labels:  tutorial, example
React Workshop
The course material for our React Hooks workshop
Stars: ✭ 184 (-40.45%)
Mutual labels:  tutorial, example
Expo Three Demo
🍎👩‍🏫 Collection of Demos for THREE.js in Expo!
Stars: ✭ 76 (-75.4%)
Mutual labels:  tutorial, example
Wordpress Plugin Boilerplate Tutorial
Tutorials and Examples for WordPress Plugin Boilerplate, a foundation for WordPress Plugin Development.
Stars: ✭ 232 (-24.92%)
Mutual labels:  tutorial, example
Wasm By Example
Wasm By Example is a website with a set of hands-on introduction examples and tutorials for WebAssembly (Wasm)
Stars: ✭ 226 (-26.86%)
Mutual labels:  tutorial, example
Coroutinerecipes
Playground for Kotlin Coroutines. Basics, Channels, Flows, useful examples & comparison to RxJava.
Stars: ✭ 104 (-66.34%)
Mutual labels:  tutorial, example
Project Minimek
A sample app to demonstrate various useful Redux techniques, accompanying the blog series at http://blog.isquaredsoftware.com/series/practical-redux
Stars: ✭ 266 (-13.92%)
Mutual labels:  tutorial, example
Circleci Demo Python Django
Example Django application running on CircleCI
Stars: ✭ 100 (-67.64%)
Mutual labels:  tutorial, example
Phoenix Liveview Counter Tutorial
🤯 beginners tutorial building a real time counter in Phoenix 1.5.5 + LiveView 0.14.7 ⚡️
Stars: ✭ 115 (-62.78%)
Mutual labels:  tutorial, example
Jni By Examples
🎇Fun Java JNI By Examples - with CMake and C++ (or C, of course!) ‼️ Accepting PRs
Stars: ✭ 99 (-67.96%)
Mutual labels:  tutorial, example
Your first decentralized application python
An up to date and bare minimum tutorial on deploying smart contracts with python
Stars: ✭ 132 (-57.28%)
Mutual labels:  tutorial, example
Reactnativecodereuseexample
Shows how to organize your code to reuse it as much as possible between Web, iOS and Android
Stars: ✭ 41 (-86.73%)
Mutual labels:  tutorial, example
Unityraymarching
Unity Raymarching Examples
Stars: ✭ 57 (-81.55%)
Mutual labels:  tutorial, example
Learn To Send Email Via Google Script Html No Server
📧 An Example of using an HTML form (e.g: "Contact Us" on a website) to send Email without a Backend Server (using a Google Script) perfect for static websites that need to collect data.
Stars: ✭ 2,718 (+779.61%)
Mutual labels:  tutorial, example
Vaporschool
Learn how to build vapor applications from rookie to champion in a constructive way!
Stars: ✭ 259 (-16.18%)
Mutual labels:  tutorial, example

javascript-journey

Companion source code to Journey from procedural to reactive JavaScript with stops

Build status

Problem: given a list of numbers, multiply each one by a constant and print the result.

var numbers = [3, 1, 7];
var constant = 2;
// expected output [6, 2, 14]

To install and run

git clone [email protected]:bahmutov/javascript-journey.git
cd javascript-journey
npm install

Then execute individual files using node src/<filename> command. The following implementations are available

Small print

Author: Gleb Bahmutov © 2015

License: MIT - do anything with the code, but don't blame me if it does not work.

Spread the word: tweet, star on github, etc.

Support: if you find any problems with this module, email / tweet / open issue on Github

MIT License

Copyright (c) 2015 Gleb Bahmutov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].