-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[投稿]从零开始构建一个完整的Angular应用 #72
base: master
Are you sure you want to change the base?
Conversation
计划通过若干篇文章来说一下自己从零开始构建一个angular2应用的过程,不使用任何starter或seed,不使用angular-cli,最终实现使用webpack打包编译,支持pug、less、hmr、路由懒加载、aot编译和服务端渲染 |
@asnowwolf 辛苦review一下 |
@@ -0,0 +1,294 @@ | |||
# Angular 2从零开始系列 - 00 | |||
|
|||
本系列将会从零开始构建一个完整的Angular项目,最终实现一个简易版的twitter,不依赖任何seed或starter,也不使用Angular cli,这样做的目的是让自己对Angular应用开发的每一个环节都有一定的了解 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AngularTwitter 项目包含后端吗?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
包含,后面会做服务端渲染
目前的代码还没有包含,我是一遍写教程,一遍写示例代码 :p
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
如果包含后端,能否在 line5 “特性” 部分添加后端内容,并且在 line74 “目录结构”中预留后端文件夹?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
特性部分写了服务端渲染,具体怎么实现我其实还没想好。另外我的想法是一步一步实现各个特性,而不是一开始就提供一个完整的脚手架,这样读者可能更容易接受吧。。。也有身临其境的感觉,嘿嘿
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
所以服务端相关的东西,可能会在最后期才会添加到“目录结构”中
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
收到。
merge from master