#Angular 2 - Fast and Furious
- Slides Highload - http://www.slideshare.net/OleksiiOkhrymenko/angular-2-68487997
- Slides Perm - http://www.slideshare.net/OleksiiOkhrymenko/angular-2-69831356
| ... | |
| ... | |
| providers: [ | |
| { provide: Http, useClass: ExtendedHttpService } | |
| ] | |
| ... | |
| ... |
#Angular 2 - Fast and Furious
| execute pathogen#infect() | |
| filetype on | |
| filetype plugin indent on | |
| filetype plugin on | |
| set nocompatible | |
| source $VIMRUNTIME/vimrc_example.vim | |
| source $VIMRUNTIME/mswin.vim | |
| behave mswin | |
| "Разблокирование всех 256 цветов |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
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
| var debug = process.env.NODE_ENV !== "production"; | |
| var webpack = require('webpack'); | |
| module.exports = { | |
| context: __dirname, | |
| devtool: debug ? "inline-sourcemap" : null, | |
| entry: "./js/scripts.js", | |
| output: { | |
| path: __dirname + "/js", | |
| filename: "scripts.min.js" |
| function whatDoesItDo(val){ | |
| return val ? 1 : 2; | |
| } |