All Projects → coffe1891 → Frontend Hard Mode Interview

coffe1891 / Frontend Hard Mode Interview

Licence: other
《前端内参》,有关于JavaScript、编程范式、设计模式、软件开发的艺术等大前端范畴内的知识分享,旨在帮助前端工程师们夯实技术基础以通过一线互联网企业技术面试。

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Frontend Hard Mode Interview

Reactjs Interview Questions
List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are coming soon!!
Stars: ✭ 17,978 (+668.95%)
Mutual labels:  javascript-framework, interview-preparation
alleycat-reactive
A simple Python library to provide an API to implement the Reactive Object Pattern (ROP).
Stars: ✭ 15 (-99.36%)
Mutual labels:  oop, fp
Angular Interview Questions
List of 300 Angular Interview Questions and answers
Stars: ✭ 2,264 (-3.17%)
Mutual labels:  rxjs, javascript-framework
TheJobInterviewGuide
A job guide to help developers get through interviews and get amazing jobs!
Stars: ✭ 267 (-88.58%)
Mutual labels:  frontend-interview, interview-preparation
Push State
Turn static web sites into dynamic web apps.
Stars: ✭ 16 (-99.32%)
Mutual labels:  rxjs, jquery
Interview Questions
List of all the Interview questions practiced from online resources and books
Stars: ✭ 187 (-92%)
Mutual labels:  interview-preparation, oop
Design-Patterns
Project for learning and discuss about design patterns
Stars: ✭ 16 (-99.32%)
Mutual labels:  oop, fp
Interviews
A list of fancy questions I've been asked during the interviews I had. Some of them I ask when interviewing people.
Stars: ✭ 140 (-94.01%)
Mutual labels:  oop, fp
Must Watch Javascript
A useful list of must-watch talks about JavaScript
Stars: ✭ 6,545 (+179.94%)
Mutual labels:  javascript-framework, jquery
Hstardoc
My blogs write with markdown.
Stars: ✭ 297 (-87.3%)
Mutual labels:  rxjs, jquery
Akita
🚀 State Management Tailored-Made for JS Applications
Stars: ✭ 3,338 (+42.77%)
Mutual labels:  rxjs, oop
Low Level Design Primer
Dedicated Resources for the Low-Level System Design. Learn how to design and implement large-scale systems. Prep for the system design interview.
Stars: ✭ 2,706 (+15.74%)
Mutual labels:  interview-preparation, oop
Angular Interview Questions
A list of helpful Angular interview questions you can use to interview potential candidates, test yourself or completely ignore.
Stars: ✭ 967 (-58.64%)
Mutual labels:  rxjs, interview-preparation
Nest Cnode
CNode 社区 Nest 版本 https://cnodejs.org/
Stars: ✭ 125 (-94.65%)
Mutual labels:  oop, fp
Tempy
Python Object Oriented Html Templating System
Stars: ✭ 126 (-94.61%)
Mutual labels:  oop
Jquery.applink
Launch native apps from web page links for mobile and desktop devices
Stars: ✭ 127 (-94.57%)
Mutual labels:  jquery
Midia
Simple Media manager for your Laravel project
Stars: ✭ 126 (-94.61%)
Mutual labels:  jquery
Algorithms
📝 算法导论与JavaScript实现
Stars: ✭ 126 (-94.61%)
Mutual labels:  interview-preparation
Involt
Inject hardware interactions directly into HTML layout.
Stars: ✭ 128 (-94.53%)
Mutual labels:  jquery
Sidebar
Sidebars for web apps
Stars: ✭ 127 (-94.57%)
Mutual labels:  jquery

前端内参

支持我

封面

【阅 读 本 书】https://coffe1891.gitbook.io/frontend-hard-mode-interview
【讨论本书】https://github.com/coffe1891/frontend-hard-mode-interview/discussions
【作者微信】coffe1891-mk(请注明 “前端内参”)
【QQ交流群】308689488(也可以扫上图二维码)

如果觉得有帮助请点右上角的Star支持我不断更新。

  1. 本书较多着笔于深层理论上的论述,辅有代码示例,适合至少三年前端工作经验的朋友阅读。
  2. 尽量访问上面的gitbook地址,导航更清晰,图片也不会出现显示错位,并且支持手机模式;
  3. 如果书里文章的图片显示不了,开科学上网工具、或者多刷几遍就好。

前端技术日新月异,我也在不断学习,因此疏漏之处在所难免,欢迎朋友随时@提建议,我将及时改进;

前言

如何在Hard模式下通过一线互联网公司的面试?相信很多程序员朋友都有过这个困扰。其实答案很简单:首先应努力成为一个好程序员,然后入职一线互联网公司只是顺路的事

然后有前端朋友可能会吐槽:“前端知识已经爆炸,今天这个框架明天那个库的,天天有新玩意儿,我实在学不动了!”是的,前端知识早已大爆炸,新东西层出不穷,如果只是靠蛮力一样一样地去学习,那么连笔者我也学不动了 。那怎么办呢?别慌,其实前端学习是有窍门的。本书归纳了前端的核心知识点,如果你能日拱一卒地坚持学习,系统地掌握这些知识点之后,相信很快也能和我一样可以做到以不变应万变,以小变应大变,并对新的前端知识很快地领悟吃透!

更多前言 · 写给有缘人

目录

零、准备Hard模式下的面试

  1. 一线互联网公司面试前的准备

壹、前端之灵:JavaScript/ECMAScript

  1. 你需要知道的新东西
  2. 核心概念
  3. 其他知识点
  4. 浏览器、V8引擎
    • 网页被浏览器绘出来过程是怎样的?
    • 页面重排(Reflow)与重绘(Repaint)
    • DOM、Shadow DOM、Virtual DOM
    • V8引擎是如何工作的
    • V8引擎内存管理和垃圾回收机制
  5. 相关后端知识、通信协议、安全
  6. 书籍推荐

贰、数据结构与算法

  1. 面试时高频率出现的算法
  2. 其他经典算法
  3. 好书推荐

叁、主流框架/库

  1. 综合比较
  2. React
  3. Vue.js
    • Vue.js源码解读:Vue数据响应式原理
    • Vue.js带来的一些新问题以及解决办法探索
  4. Angular.js
    • 你真的懂Angular.js吗?
    • Angular.js性能优化要点
  5. Flutter
    • 浅谈Flutter给前端研发带来的变化
    • Dart
  6. 好书推荐

肆、必会的工具

  1. Webpack-自动打包模块工具
  2. API文档管理
    • 用Swagger解决前后端沟通不畅与API调试强依赖的问题
    • Easydoc.xyz
  3. IDE-工欲善其事必先利其器
    • 高效使用VSCode的10点建议
    • 适用于前端开发者的优秀VSCode插件
    • Sublime Text

伍、编程范式

  1. 面向对象编程(OOP)
  2. 函数式编程
  3. 响应式编程

陆、软件设计的原则

  1. 导读:SOLID
  2. 好书推荐

柒、设计模式和软件工程

  1. 十四种经典设计模式
    • 单例模式
    • 策略模式
    • 代理模式
    • 迭代器模式
    • 发布-订阅模式
    • 命令模式
    • 组合模式
    • 模板方法模式
    • 享元模式
    • 职责链模式
    • 中介者模式
    • 装饰者模式
    • 状态模式
    • 适配器模式
  2. 浅谈软件工程:MVC、MVP、MVVM

捌、很有用的网站

  1. 中文站-Mozilla大宝库 外链 最全的Web相关参考文档,没有之一
  2. 英文站-StackOverflow 外链 掌握了四级英语就能向老外提问交流了,解决疑难杂症必上
  3. 中文站-Vue.js手册 外链 手册在手,玩转Vue不愁
  4. 英文-Vue资源大全 外链 超级多的资源,总能找到你喜欢的那款

玖、公众号&博客推荐

  1. 一线互联网公司官方前端公众号
  2. 知名前端人物

拾、后记

  1. 成为一个好的程序员远比找份好工作重要
  2. 2020年前端技术展望

贡献者

thales-jiang

联系我

contact me via gmail
https://github.com/coffe1891

对本书有任何疑问,欢迎联系我。

版权许可

本作品采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可,只要保持原作者署名和非商用,您可以自由地阅读、分享、修改本书。

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].