Vue.js and Related
- Vue.js - http://vuejs.org/
- Official Repo - https://github.com/vuejs
- Vuex - https://vuex.vuejs.org/
- Vue Router - https://router.vuejs.org/
- Vue Loader - https://vue-loader.vuejs.org/
- vue-devtools - https://github.com/vuejs/vue-devtools
- Awesome Vue - https://github.com/vuejs/awesome-vue
- Vue Cruted - https://curated.vuejs.org/
- Server Side Render - https://ssr.vuejs.org/
- Prerender
- UI Framework
- Element UI - http://element.eleme.io/
- iView - https://www.iviewui.com/
- Ant Design - https://ant.design/
- For React
WebPack and Parcel
- Parcel - https://parceljs.org/
- Babel - https://babeljs.io/
- Trans compile ES6 JavaScript into browser-compatible
Babel
const input = [1, 2, 3];
console.log(input.map(item => item + 1)); // [2, 3, 4]
is compiled by Babel to:
var input = [1, 2, 3];
console.log(input.map(function (item) {
return item + 1;
})); // [2, 3, 4]
上面例子引自:Why Babel Matters
Babel 也支持 React 的 JSX 语法。