国外前端学习网站

国内的普通开发者对于掌握一门新的技术不知道从哪里下手,看哪些书。为了获得相关知识会关注各种公众号、购买各种视频课程来学习,但由于这些内容本身有碎片化的特点,效果往往不太理想。以至于付出了大量的时间到最后不能够形成系统化的知识。

我同样也遇到过类似的问题,不是说公众号与视频课程不好,这些也有自身的优势,但是往往都是别人经过实践沉淀下来的,我们读过之后往往仅限于了解而已。如果要掌握还需要大量的实践、探究才行。

我自己在学习的过程中遇到了一些比较优秀的国外课程,这些课程也是国外开发者学习实践的主要形式,那我现在整理出来分享给大家:

Git
Git的学习主要推崇的就是Githug,它主要是以游戏闯关的形式来加深Git。直达链接:https://github.com/Gazler/githug

JavaScript
Build 30 things in 30 days with 30 tutorials
No Frameworks×No Compilers×No Libraries×No Boilerplate
直达链接:https://javascript30.com/

ES6
https://es6.io/

React
https://reactforbeginners.com/

Node
https://learnnode.com/

Vuex
https://scrimba.com/g/gvuex

JavaScript 内存管理
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Memory_Management

JavaScript 事件循环
https://developer.mozilla.org/en-US/docs/Web/JavaScript/EventLoop
浏览器环境中,两个运行时可以通过postMessage方法实现通信。

Block formatting context
面试时常考的:https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Block_formatting_context

一些前端库的介绍:

Snabbdom
Snabbdom是一个vdom比对库,在含有虚拟DOM的框架中特别常用。
自身介绍:A virtual DOM library with focus on simplicity, modularity, powerful features and performance.
地址:https://github.com/snabbdom/snabbdom

Leaflet.heat
Leaflet.heat可以用于绘制热力图:https://github.com/Leaflet/Leaflet.heat

使用CSS制作简历
超棒的可以使用纯CSS制作一份完整的个人简历,也可以用来练手:
https://css-tricks.com/new-year-new-job-lets-make-a-grid-powered-resume/

看到这里的同学可以试着使用Promise实现一个只能同时进行两项任务的函数:

function addTask(task) {

}

addTask({ value: 1, time: 300 }).then(function (e) { console.info(e) });
addTask({ value: 2, time: 100 }).then(function (e) { console.info(e) });
addTask({ value: 3, time: 400 }).then(function (e) { console.info(e) });
addTask({ value: 4, time: 700 }).then(function (e) { console.info(e) });

// 最后的输出结果为: -> 2, 1, 4, 3

感谢博主分享:
原文链接:link.

发布了83 篇原创文章 · 获赞 25 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/Jamesaonier/article/details/104833283