上一页 1 ··· 462 463 464 465 466 467 468 469 470 ··· 494 下一页
摘要: In this lesson, you will learn how to configure node apps using pm2 and a json config file.Let's say there are tow node apps: app1, app2.What we want ... 阅读全文
posted @ 2015-04-29 16:05 Zhentiw 阅读(243) 评论(0) 推荐(0)
摘要: 'const' keyword is for creating a read only variable, something you can never change once created.'const' likes 'let' keyword alos has block scope.des... 阅读全文
posted @ 2015-04-29 04:14 Zhentiw 阅读(280) 评论(0) 推荐(0)
摘要: ES-Next:Esnext is similar to traceur, you can use command line to compile files.Install:npm install esnext -g Here's how to compile a single file an p... 阅读全文
posted @ 2015-04-29 03:47 Zhentiw 阅读(414) 评论(0) 推荐(0)
摘要: Polyfill is something you don't need to set up traceur but start to use es6 in today's browser.You can search for polyfill which you want to use on Go... 阅读全文
posted @ 2015-04-29 03:24 Zhentiw 阅读(289) 评论(0) 推荐(0)
摘要: direictives/index.js:module.exports = function(ngModule) { //register all the directives here require('./hello')(ngModule);};directives/hello.js... 阅读全文
posted @ 2015-04-13 03:20 Zhentiw 阅读(599) 评论(0) 推荐(0)
摘要: 1. Install webpack & angular:npm install webpack angular2. Create webpack.config.js file:module.exports = { context: __dirname + '/app', entry: ... 阅读全文
posted @ 2015-04-13 02:49 Zhentiw 阅读(1796) 评论(0) 推荐(0)
摘要: It is best to start your application's localization effortsearlyin development, even if you only support one language initially. Libraries like angula... 阅读全文
posted @ 2015-03-28 23:40 Zhentiw 阅读(306) 评论(0) 推荐(0)
摘要: Mixins will allow you to apply behaviors to multiple React components.Components are the best way to reuse code in React, but sometimes very different... 阅读全文
posted @ 2015-03-25 17:16 Zhentiw 阅读(295) 评论(0) 推荐(0)
摘要: The React component lifecycle will allow you to update your components at runtime. This lesson will explore how to do that.Updating: componentWillRece... 阅读全文
posted @ 2015-03-25 16:42 Zhentiw 阅读(619) 评论(0) 推荐(0)
摘要: The previous lesson introduced the React component lifecycle mounting and unmounting. In this lesson you will learn some simple uses for these hooks. ... 阅读全文
posted @ 2015-03-24 23:01 Zhentiw 阅读(315) 评论(0) 推荐(0)
上一页 1 ··· 462 463 464 465 466 467 468 469 470 ··· 494 下一页