- Users want to compose reducer tree across modules
- Idea of a single reducer function makes it difficult for the library to dynamically augment the shape of the state tree
- Turning control over to the library to build the root reducer limits the use of meta-reducers
- Feature modules may inadvertently collide with the state of the root module
- Library authors may want to leverage @ngrx/store in their projects and provide an easy way
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grunt.loadNpmTasks('grunt-text-replace'); | |
grunt.initConfig({ | |
'replace': { | |
default: { | |
src: ['lib/**/*.js'], | |
overwrite: true, | |
replacements: [ | |
{ | |
from: 'var __extends = (this && this.__extends)', |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Script to compile vips from git for AWS lambda as dynamic binary | |
# Run on a fresh amzn-ami-hvm-2015.09.1.x86_64-gp2 image. | |
# Tested with image id ami-bff32ccc on t2.micro in eu-west-1. | |
set -e # abort on errors | |
# set -x # for debugging | |
echo Installing build dependencies... |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
-
Install OpenOffice headless package
$ sudo apt-get install openoffice.org-headless openoffice.org-java-common openoffice.org-writer openoffice.org-calc openoffice.org-impress
-
Install UNO python library
$ sudo apt-get install python-uno unoconv