├── .gitignore ├── LICENSE ├── Node.png ├── README.md ├── React知识图谱.png ├── 前端动画知识图谱.png ├── 工程化技能图谱.png └── 移动端开发调试导图.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Build and Release Folders 2 | bin/ 3 | bin-debug/ 4 | bin-release/ 5 | [Oo]bj/ # FlashDevelop obj 6 | [Bb]in/ # FlashDevelop bin 7 | 8 | # Other files and folders 9 | .settings/ 10 | 11 | # Executables 12 | *.swf 13 | *.air 14 | *.ipa 15 | *.apk 16 | 17 | # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` 18 | # should NOT be excluded as they contain compiler settings and other important 19 | # information for Eclipse / Flash Builder. 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 iv-web 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 | -------------------------------------------------------------------------------- /Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iv-web/ivweb-kg/19d950102763eb2831d12c5ec177bd902b693e9f/Node.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ivweb-kg 2 | 前端必备的知识技能图谱,包含工程化、React、动画、移动端调试、Node.js 等领域的技术知识点 3 | 4 | ## 发起人 5 | [刘恒兵](https://github.com/herbertliu) 6 | 7 | ## 维护者列表 8 | 9 | - [工程化技能图谱](https://raw.githubusercontent.com/iv-web/ivweb-kg/master/%E5%B7%A5%E7%A8%8B%E5%8C%96%E6%8A%80%E8%83%BD%E5%9B%BE%E8%B0%B1.png): [程柳锋](https://github.com/cpselvis) 10 | - [React知识图谱](https://raw.githubusercontent.com/iv-web/ivweb-kg/master/React%E7%9F%A5%E8%AF%86%E5%9B%BE%E8%B0%B1.png): [莫卓颖]()、[何方舟](https://github.com/adamchuan) 11 | - [前端动画知识图谱](https://raw.githubusercontent.com/iv-web/ivweb-kg/master/%E5%89%8D%E7%AB%AF%E5%8A%A8%E7%94%BB%E7%9F%A5%E8%AF%86%E5%9B%BE%E8%B0%B1.png): [曹润颀](https://github.com/iaiae) 12 | - [移动端开发调试导图](https://raw.githubusercontent.com/iv-web/ivweb-kg/master/%E7%A7%BB%E5%8A%A8%E7%AB%AF%E5%BC%80%E5%8F%91%E8%B0%83%E8%AF%95%E5%AF%BC%E5%9B%BE.png): [张徐辰](https://github.com/dainiel) 13 | - [Node](https://raw.githubusercontent.com/iv-web/ivweb-kg/master/Node.png): [朱林](https://github.com/zhulin2609) 14 | -------------------------------------------------------------------------------- /React知识图谱.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iv-web/ivweb-kg/19d950102763eb2831d12c5ec177bd902b693e9f/React知识图谱.png -------------------------------------------------------------------------------- /前端动画知识图谱.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iv-web/ivweb-kg/19d950102763eb2831d12c5ec177bd902b693e9f/前端动画知识图谱.png -------------------------------------------------------------------------------- /工程化技能图谱.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iv-web/ivweb-kg/19d950102763eb2831d12c5ec177bd902b693e9f/工程化技能图谱.png -------------------------------------------------------------------------------- /移动端开发调试导图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iv-web/ivweb-kg/19d950102763eb2831d12c5ec177bd902b693e9f/移动端开发调试导图.png --------------------------------------------------------------------------------