首页 > 编程知识 正文

国外web前端开发,国外教程网站

时间:2023-05-05 11:34:16 阅读:228018 作者:4213

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

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

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

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

Html的渲染过程

How the browser renders a web page? — DOM, CSSOM, and Rendering

一些前端库的介绍:

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

来试着实现一下吧!

欢迎大家收藏本文,后期将不定时的更新完善。

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。