├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Build and Release Folders 2 | bin/ 3 | bin-debug/ 4 | bin-release/ 5 | 6 | # Other files and folders 7 | .settings/ 8 | 9 | # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` 10 | # should NOT be excluded as they contain compiler settings and other important 11 | # information for Eclipse / Flash Builder. 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 IMWeb 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FKB - WEB前端知识库,Frontend Knowledge Base 2 | 3 | 腾讯出品,提供海量用户服务所需的Web前端知识库。 4 | 5 | ### 经验分享 6 | 1. [团队规范汇总](https://github.com/imweb/code-guide) & [开发规范](http://imweb.github.io/rule/) 7 | 2. [移动开发经验汇总](https://github.com/imweb/mobile) & [移动优化经验](https://github.com/herbertliu/OMS) 8 | 3. [ES6规范](https://github.com/imweb/es6-code-style-guide) 9 | 4. [行业分享精华](https://github.com/imweb/ppts) 10 | 5. [RESTful体系](https://github.com/imweb/RESTful) 11 | 12 | ### 质量建设 13 | 1. [Badjs错误日志监控平台](https://github.com/betterjs) & [Badjs Error](https://github.com/BetterJS/badjs-report/issues) 14 | 2. [性能优化体系](https://github.com/herbertliu/heron) [完善中] 15 | - [视频优化专项](https://github.com/herbertliu/heron/issues/1) 16 | - 图片优化专项 17 | 18 | 19 | ### 效率建设 20 | 1. [Lego生态组件系统](https://github.com/imweb/lego) 21 | 2. [Git开源组件](https://github.com/imweb/Components) 22 | 3. [MVVM(Q.js)](https://github.com/imweb/Q.js) 23 | 4. [IMWeb Font](http://iconfont.imweb.io/) 24 | 25 | 26 | 27 | 28 | 诚邀大家一起完善,欢迎 [Fork](https://github.com/imweb/FKB/fork) & [Pull Request](https://github.com/imweb/FKB/pulls) & [Issue](https://github.com/imweb/FKB/issues) 29 | 30 | ## Contributors 31 | 32 | + [herbertliu](https://github.com/herbertliu) 33 | 34 | 35 | --------------------------------------------------------------------------------