2018最新学习 - 持续更新ing

持续更新… 未完待续…

1.Fetch https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch
http://taobaofed.org/blog/2016/03/09/server-in-front-end/

<!-- fetchApi.js -->
eg:import { baseURL } from 'config/GlobalConfig';
    let fetchApi = (url, type, params) => {
        return fetch(`${baseURL + url}`, {method: type, body: JSON.stringify(params)}).then(
            response => response.json()
        ).catch(error => console.error('Error:', error));
    };
    export default fetchApi;
<!-- html -->
引用: import fetchApi from 'fetchApi.js';
fetchApi('url', 'get/post/put/delete…', params).then((r) => {
    console.log(r)
})

2.ES6 http://es6.ruanyifeng.com/#docs/object
—-ES6-进阶 http://taobaofed.org/blog/2016/11/03/es6-advanced/

3.React - 组件间通信 http://taobaofed.org/blog/2016/11/17/react-components-communication/

4.TypeScript https://www.tslang.cn/samples/index.html

5.WebAssembly https://developer.mozilla.org/zh-CN/docs/WebAssembly

6.<<数据结构与算法JavaScript描述>> – 吸毒并且敲一遍代码-反复理解和记忆。

7.<<微信小程序实战入门>> – 写一个属于自己的小程序…

8.wepy熟悉和使用

9.webRTC 是一项实时通讯技术,它允许网络应用或者站点,在不借助中间媒介的情况下,建立浏览器之间点对点(Peer-to-Peer)的连接,实现视频流和(或)音频流或者其他任意数据的传输。WebRTC包含的这些标准使用户在无需安装任何插件或者第三方的软件的情况下,创建点对点(Peer-to-Peer)的数据分享和电话会议成为可能。

10.mvvm框架实现-vue源码解读https://zhuanlan.zhihu.com/p/27028242

11.es6全面分析和精通 http://es6.ruanyifeng.com

12.