主要记录一些自己在平常工作学习当中发现的一些开源项目,也是能够让自己知道自己star了哪些项目,不要只是star,而要真正能够star的有意义,时刻能够提醒自己。
注意以下项目不分先后,等以后多了以后会对其进行详细一些的分类
1.fetch
就不用为了使用jQuery的Ajax方法就引入整个jQuery库,可以使用window.fetch()就可以了,它是一个简洁、标准化的javascript的Ajax API。在Chrome和Firefox中已经可以使用,如果需要兼容其他浏览器,可以使用fetch polyfill,也就是下面这个库了
A window.fetch JavaScript polyfill.
github地址
https://github.com/github/fetch
MDN
https://developer.mozilla.org/en-US/docs/Web/API/GlobalFetch/fetch
https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API
2.axios
Promise based HTTP client for the browser and node.js
github地址
https://github.com/mzabriskie/axios
3.superagent
*Ajax with less suck - (and node.js HTTP client to match) *