Top Related Projects
🎉 A curated list of awesome things related to Vue.js
A UI library by WeChat official design team, includes the most useful widgets/modules in mobile web applications.
开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/
🦎 一套代码运行多端,一端所见即多端所见
A cross-platform framework using Vue.js
A framework for building Mobile cross-platform UI
Quick Overview
The justjavac/awesome-wechat-weapp repository is a curated list of resources for WeChat Mini Programs development. It serves as a comprehensive collection of tools, frameworks, libraries, and learning materials specifically tailored for developers working on WeChat's mini-program platform.
Pros
- Extensive collection of resources covering various aspects of WeChat Mini Programs development
- Regularly updated with new and relevant content
- Well-organized structure, making it easy to find specific resources
- Community-driven project with contributions from multiple developers
Cons
- May be overwhelming for beginners due to the large number of resources
- Some listed resources might become outdated over time
- Primarily in Chinese, which could be a barrier for non-Chinese speaking developers
- Lacks detailed descriptions or reviews of individual resources
As this is not a code library but a curated list of resources, there are no code examples or getting started instructions to provide.
Competitor Comparisons
🎉 A curated list of awesome things related to Vue.js
Pros of awesome-vue
- Broader scope, covering the entire Vue.js ecosystem
- Larger community and more frequent updates
- More comprehensive, including tutorials, components, and tools
Cons of awesome-vue
- May be overwhelming for beginners due to its extensive content
- Less focused on specific use cases compared to awesome-wechat-weapp
Code Comparison
awesome-vue typically includes Vue.js specific code snippets:
<template>
<div>{{ message }}</div>
</template>
<script>
export default {
data() {
return {
message: 'Hello Vue!'
}
}
}
</script>
awesome-wechat-weapp focuses on WeChat Mini Program code:
Page({
data: {
message: 'Hello WeChat Mini Program!'
},
onLoad: function() {
// Page load logic
}
})
Summary
awesome-vue is a comprehensive resource for Vue.js developers, offering a wide range of tools, components, and learning materials. It benefits from a larger community and frequent updates but may be overwhelming for beginners.
awesome-wechat-weapp is more focused on WeChat Mini Program development, providing specific resources for this platform. While it may have a narrower scope, it offers targeted information for developers working within the WeChat ecosystem.
Both repositories serve as valuable curated lists for their respective technologies, helping developers find useful resources and stay up-to-date with the latest developments in their fields.
A UI library by WeChat official design team, includes the most useful widgets/modules in mobile web applications.
Pros of weui
- Official UI library developed by Tencent, ensuring compatibility and adherence to WeChat design standards
- Comprehensive set of pre-built UI components specifically designed for WeChat Mini Programs
- Regular updates and maintenance from Tencent's development team
Cons of weui
- Limited to WeChat Mini Program development, less versatile for other platforms
- May have a steeper learning curve for developers not familiar with WeChat's ecosystem
- Less flexibility for customization compared to a curated list of various resources
Code Comparison
weui:
.weui-btn {
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
padding-left: 14px;
padding-right: 14px;
box-sizing: border-box;
font-size: 18px;
text-align: center;
text-decoration: none;
color: #FFFFFF;
line-height: 2.55555556;
border-radius: 5px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
overflow: hidden;
}
awesome-wechat-weapp: (Note: This repository is a curated list, so it doesn't contain direct code examples. Instead, it provides links to various resources and tools for WeChat Mini Program development.)
开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/
Pros of Taro
- Cross-platform development: Taro allows developers to write once and deploy to multiple platforms, including WeChat Mini Programs, H5, and native apps
- Rich ecosystem: Taro has a comprehensive set of UI components and APIs, making it easier to build complex applications
- Active development: Taro is actively maintained and regularly updated with new features and improvements
Cons of Taro
- Learning curve: Taro requires familiarity with React and its ecosystem, which may be challenging for developers new to these technologies
- Performance overhead: The cross-platform nature of Taro may introduce some performance overhead compared to native WeChat Mini Program development
- Limited customization: Some platform-specific features may be harder to implement or customize in Taro
Code Comparison
Taro (React-based):
import { Component } from 'react'
import { View, Text } from '@tarojs/components'
export default class Index extends Component {
render() {
return <View><Text>Hello, World!</Text></View>
}
}
WeChat Mini Program (native):
<view>
<text>Hello, World!</text>
</view>
Page({
// Page logic here
})
Summary
Taro offers cross-platform development and a rich ecosystem, while awesome-wechat-weapp is a curated list of resources for native WeChat Mini Program development. Taro provides a more structured development approach but may have a steeper learning curve, while awesome-wechat-weapp offers a collection of tools and libraries for direct Mini Program development.
🦎 一套代码运行多端,一端所见即多端所见
Pros of Chameleon
- Cross-platform development: Supports multiple platforms including WeChat Mini Programs, Alipay Mini Programs, and web applications
- Built-in UI components: Provides a set of pre-built UI components for faster development
- Hot reload: Offers hot reload functionality for improved development experience
Cons of Chameleon
- Steeper learning curve: Requires learning a new framework and syntax
- Less community support: Smaller community compared to the extensive resources available for WeChat Mini Programs
- Limited ecosystem: Fewer third-party plugins and extensions compared to the WeChat Mini Program ecosystem
Code Comparison
Chameleon:
<template>
<view>
<text>Hello, {{name}}!</text>
</view>
</template>
<script>
class Index {
data = {
name: 'Chameleon'
}
}
export default new Index();
</script>
awesome-wechat-weapp (WeChat Mini Program):
Page({
data: {
name: 'WeChat Mini Program'
},
onLoad: function() {
// Page load logic
}
})
Summary
Chameleon offers cross-platform development capabilities and built-in UI components, making it suitable for projects targeting multiple platforms. However, it has a steeper learning curve and less community support compared to WeChat Mini Programs. The awesome-wechat-weapp repository provides a curated list of resources specifically for WeChat Mini Programs, offering a wider range of tools and examples for developers focused on the WeChat ecosystem.
A cross-platform framework using Vue.js
Pros of uni-app
- Cross-platform development: Supports multiple platforms including WeChat Mini Programs, H5, iOS, and Android
- Rich component library and API: Provides a comprehensive set of UI components and APIs
- Active community and regular updates: Maintained by a dedicated team with frequent releases
Cons of uni-app
- Steeper learning curve: Requires understanding of Vue.js and the uni-app framework
- Potential performance overhead: May have slightly lower performance compared to native development
- Limited customization for platform-specific features: Some platform-specific functionalities may be challenging to implement
Code Comparison
awesome-wechat-weapp (WeChat Mini Program):
Page({
data: {
message: 'Hello World'
},
onLoad: function() {
// Page load logic
}
})
uni-app:
<template>
<view>{{ message }}</view>
</template>
<script>
export default {
data() {
return {
message: 'Hello World'
}
},
onLoad() {
// Page load logic
}
}
</script>
The awesome-wechat-weapp repository is a curated list of WeChat Mini Program resources, while uni-app is a full-fledged cross-platform development framework. awesome-wechat-weapp focuses solely on WeChat Mini Programs, providing a collection of tools, libraries, and tutorials. uni-app, on the other hand, offers a more comprehensive solution for developing applications that can run on multiple platforms, including WeChat Mini Programs.
A framework for building Mobile cross-platform UI
Pros of Weex
- Cross-platform development: Weex allows building native mobile apps for iOS and Android, as well as web applications, using a single codebase
- Performance: Weex provides near-native performance by rendering components directly to the native UI
- Backed by Alibaba: As an Alibaba project, Weex has strong support and resources for development and maintenance
Cons of Weex
- Learning curve: Developers need to learn Weex-specific APIs and concepts, which may take time compared to using familiar WeChat Mini Program frameworks
- Limited ecosystem: Weex has a smaller community and fewer third-party libraries compared to the extensive resources available for WeChat Mini Programs
- Complexity: Setting up and configuring a Weex project can be more complex than creating a WeChat Mini Program
Code Comparison
Weex component example:
<template>
<div>
<text>Hello, Weex!</text>
</div>
</template>
WeChat Mini Program component example:
<view>
<text>Hello, WeChat Mini Program!</text>
</view>
While both examples show simple components, Weex uses Vue.js-like syntax, whereas WeChat Mini Programs use a custom template syntax similar to standard HTML with custom tags.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
微信å°ç¨åºå¼åèµæºæ±æ»
æ¬ææ¶éäºå¾®ä¿¡å°ç¨åºå¼åè¿ç¨ä¸ä¼ä½¿ç¨å°çèµæãé®é¢ä»¥å第ä¸æ¹ç»ä»¶åºãæ¬æä¸æ¯ä¸ç¯å ³äºå¦ä½å¦ä¹ 微信å°ç¨åºçå ¥é¨æåï¼ä¹éåèæåï¼åªæ¯ä¸äºèµæçæ´çã
æ¬ä»åºä¸çèµææ´çèªç½ç»ï¼ä¹æä¸äºæ¥èªç½åçæ¨èãå¨è¿éå¯ä»¥çå°é¡¹ç®è´¡ç®è çå®æ´ååã
å¦æè¿ä¸ªä»åºå¯¹ä½ æ帮å©ï¼æ¬¢è¿ starãå¦æè¿ä¸ªä»åºå¸®ä½ æåäºæè½æ¾å°äºå·¥ä½ï¼å¯ä»¥è¯·æåæ¯åå¡ï¼
QQ交æµç¾¤
- 微信å°ç¨åº1å·ç¾¤ï¼593495800 ï¼å·²æ»¡ï¼
- 微信å°ç¨åº2å·ç¾¤ï¼578063690
- 微信å°ç¨åº3å·ç¾¤ï¼682463867
ç®å½
置顶
å®æ¹ææ¡£
- å°ç¨åºè®¾è®¡æå
- å°ç¨åºå¼åæç¨
- å°ç¨åºæ¡æ¶
- å°ç¨åºç»ä»¶
- å°ç¨åº API
- å°ç¨åºå¼åè å·¥å ·
å·¥å ·
- uni-app â 36.1k+ - ä½¿ç¨ Vue è¯æ³å¼åå°ç¨åºãH5ãAppçç»ä¸æ¡æ¶
- Taro â 30.6k+ - ä½¿ç¨ React çæ¹å¼å¼åå°ç¨åºçæ¡æ¶ï¼åæ¶æ¯æçæå¤ç«¯åºç¨
- WePY â 21.7k+ - æ¯æç»ä»¶åçå°ç¨åºå¼åæ¡æ¶
- mpvue â 20.4k+ - åºäº Vue.js çå°ç¨åºå¼åæ¡æ¶ï¼ä»åºå±æ¯æ Vue.js è¯æ³åæå»ºå·¥å ·ä½ç³»
- chameleon â 8.6k+ - ä¸å¥ä»£ç è¿è¡å¤ç«¯ï¼ä¸ç«¯æè§å³å¤ç«¯æè§
- kbone â 4.2k+ - Web ä¸å°ç¨åºåæ解å³æ¹æ¡
- Remax â 4.2k+ - 使ç¨çæ£ç React æ建å°ç¨åº
- wept â 2.3k - 微信å°ç¨åºå®æ¶è¿è¡ç¯å¢
- wechat_web_devtools â 2.3k+ - Linux ä¸å¾®ä¿¡å¼åè å·¥å ·
- wafer â 2.1k - å¿«éæå»ºå ·å¤å¼¹æ§è½åç微信å°ç¨åº
- MPX â 2.1k+ - å¢å¼ºåå°ç¨åºæ¡æ¶ï¼æ·±åº¦æ§è½ä¼åï¼æ¯æè·¨å°ç¨åºå¹³å°å¼åï¼å®å ¨å ¼å®¹åçå°ç¨åºç»ä»¶
- Labrador â 1.7k - æ¯æ ES6/7 ç微信å°ç¨åºç»ä»¶åå¼åæ¡æ¶
- licia â 1.7k - æ¯æå°ç¨åºç JS å·¥å ·åº
- megalo â 1.6k - åºäº Vue çå°ç¨åºå¼åæ¡æ¶
- CloudBase Framework â 1.1k - è ¾è®¯äºå¼åå¼æºä¸é®é¨ç½²å·¥å ·ï¼æ¯æé¨ç½²å°ç¨åºåäºå¼ååºç¨
- tina â 1k+ - 轻巧çæ¸è¿å¼å¾®ä¿¡å°ç¨åºæ¡æ¶
- minapp â 800+ - TypeScript çå°ç¨åºå¼åæ¡æ¶ï¼å ¼å®¹åçå°ç¨åºä»£ç ï¼
- Okam â 300+ - 使ç¨ç±» Vue æ¹å¼å¼åå°ç¨åºçæ¸è¿å¢å¼ºæ¡æ¶ï¼æ¯æçæ微信/ç¾åº¦ç主æµå¹³å°çå°ç¨åº
- xpmjs â 100+ - 微信å°ç¨åºäºç«¯å¢å¼º SDK
- WeApp-Workflow â 100+ - åºäº Gulp ç微信å°ç¨åºå端å¼åå·¥ä½æµ
- weapp-tailwindcss-webpack-plugin â 100+ - å¨å°ç¨åºéä½¿ç¨ TailwindCSS å§
- gulp-wxa-copy-npm - 微信å°ç¨åº gulp æ件ï¼è§£å³ npm å 管çå babel-runtime
- weact - ç¨ JSX å¿«éå¼åå°ç¨åº
- socket.io-mp-client - 微信å°ç¨åº socket.io 客æ·ç«¯
- @wxa - AOPå°ç¨åºå¼åæ¡æ¶
- postcss-pxtorpx-pro - postcss px 转 rpx æ件
- px2rpx - Px 转 Rpx å¨çº¿å·¥å ·
- wxml-parser - JavaScript WXML parser
- @wxml/parser, @wxml/traverse, @wxml/generator - WXML babel like AST interpreter
- weappx - åºäº redux çæ°æ®å±ç®¡çæ¡æ¶
- weapp-start - åºäºæ件æºå¶çå¼åèææ¶ï¼æ¹ååçå°ç¨åºå¼åä½éª
- Egret Wing - æ¯æ微信å°ç¨åºå®æ¶é¢è§ç IDE
- wxapp-graphql - å°ç¨åº GraphQL 客æ·ç«¯
- gulp-wxapp-boilerplate - å°ç¨åº+å°ç¨åºäº Gulp å¼åèææ¶ï¼æ¯æäºå½æ° mock
- wenaox - å°ç¨åºæ°æ®å±ç®¡ç ï¼è½»éæ§è½å¥½ï¼æ¯æä¸é´ä»¶
- authing-wxapp-sdk - èº«ä»½è®¤è¯ for 微信å°ç¨åº
- weapp-eslint-boilerplate - 微信å°ç¨åº Eslint éç¨æ¨¡æ¿æ件ï¼èçèªå·±é ç½®çæ¶é´
- Anka - æ¸è¿å¼å°ç¨åºå¼åå·¥å ·éï¼æä¾éç¨çå¼åå½æ°åºåç»ä»¶
- WeAppBunXin - 微信å°ç¨åºå¼åä¹å½±å身æ¯ï¼ä¸å¥ä»£ç çæå¤ä¸ªå°ç¨åº
- miniprogram-build - å°ç¨åºå½ä»¤è¡ç¼è¯å·¥å ·(æ¯ætypescript,åçnpm,èµæºæ件å缩...)
- wcc.js - wcc.js æ¯wxmlæ件åwxsæ件ç¼è¯å¨çnodejså®ç°
- wcsc.js - wcsc.js æ¯wxssæ件ç¼è¯å¨çnodejså®ç°
- weapp-gulp - Gulpé«ææ建微信å°ç¨åºï¼è®©å¼ååå¾æ´ç®å
- cheers-mp - Almosté¶é 置微信åçå°ç¨åºèææ¶ï¼vue-cliè¬çä½éª~(tsãlessãåçnpmãäºOSSãCIèªå¨åå¸ä½éªç)
- we-mobx - å¨å¾®ä¿¡å°ç¨åºä¸ä½¿ç¨ MobX
- weconsole - åè½å ¨é¢ãçé¢ä¸ä½éªå¯¹æ Chrome devtools çå¯å®å¶åçå°ç¨åºå¼åè°è¯é¢æ¿
- wechat-web-devtools-linux - Linux ä¸å¾®ä¿¡å¼åè å·¥å ·
- rubic - åºäº Vue3 çå°ç¨åºå¼åæ¡æ¶ï¼å¨å°ç¨åºä¸ä½¿ç¨ Composition API
æ件
- wxapp.vim - æä¾å¾®ä¿¡å°ç¨åºå¼åå ¨æ¹ä½æ¯æç vim æ件
- weapp-snippet-for-sublime-text-2-3 - 为 sublime text 2&3 åå¤ç微信å°ç¨åº snippet(åæ´)
- Matchmaker - IntelliJ IDEA æ件ï¼æ³¨å ¥æ¹æ³
- wechatCode-complete - webstorm æ件ï¼ä»£ç æ示ï¼
- wxapp - sublime plugin
- minapp - vscode æ件ï¼æ¯æ åç/mpvue/wepy æ¡æ¶ï¼
- vscode æ件(代ç æ示)\
- vscode-live-sass-compiler - vscodeæä»¶æ ¹æ®.scssæ件èªå¨çæwxssæ件
- WePY Plugin For IntelliJ Platform - 让PhpStorm/WebStormå ¨é¢æ¯æWePYçå¼åï¼å æ¬API(åç/WePY)åç»ä»¶(å®æ¹/èªå®ä¹)çèªå¨å®æ/é误æ£æ¥/é«äº®/ä¸ä¾èµVue/...
- wxml - vscodeæ件--微信å°ç¨åºæ ¼å¼å以åé«äº®ç»ä»¶(é«åº¦èªå®ä¹)
- wux-weapp-snippets - Wux Weapp Snippets for VS Code.
- wux-weapp-atom-snippets - Wux Weapp Snippets for Atom.
- wux-weapp-sublime-snippets - Wux Weapp Snippets Plugin for Sublime Text 2/3.
ç»ä»¶
- weui-wxss â 12.4K+ - å微信åçè§è§ä½éªä¸è´çåºç¡æ ·å¼åº
- vant-weapp â 12.3k+ - é«é¢å¼ã好ç¨ãææ©å±ç微信å°ç¨åº UI åº
- wxParse â 7.2K+ - 微信å°ç¨åºå¯ææ¬è§£æèªå®ä¹ç»ä»¶ï¼æ¯æ HTML å markdown 解æ
- mp-html â 1.4K+ - å°ç¨åºå¯ææ¬ç»ä»¶ï¼æ¯æ渲æåç¼è¾ htmlï¼æ¯æå¨å¾®ä¿¡ãQQãç¾åº¦ãæ¯ä»å®ã头æ¡å uni-app å¹³å°ä½¿ç¨
- iview-weapp â 5.5k+ - ä¸å¥é«è´¨éç微信å°ç¨åº UI ç»ä»¶åº
- wux-weapp â 4.2k+ - ä¸å¥ç»ä»¶åãå¯å¤ç¨ãææ©å±ç微信å°ç¨åº UI ç»ä»¶åº
- wx-charts â 4.1k+ - 微信å°ç¨åºå¾è¡¨ charts ç»ä»¶
- Lin UI â 2k+ - ä¸å¥è®¾è®¡ä¼è¯ãåºäºåç微信å°ç¨åºè¯æ³ç UI ç»ä»¶åº
- wemark â 1.100+ - 微信å°ç¨åº Markdown 渲æåº
- image-cropper â 900+ - ð¯å¾®ä¿¡å°ç¨åºå¾çè£åªç»ä»¶
- wxapp-img-loader â 400+ - 微信å°ç¨åºå¾çé¢å è½½ç»ä»¶
- we-cropper â 400+ - 微信å°ç¨åºå¾çè£åªå·¥å ·
- wxa-plugin-canvas â 300+ - 微信å°ç¨åºæååæµ·æ¥çæç»ä»¶
- WeZRender â 300+ - 微信å°ç¨åº Canvas å¼å
- wx_calendar â 300+ - å°ç¨åºæ¥å
- wxapp â 300+ - 微信å°ç¨åºç»ä»¶
- Wa-UI â 200+ - é对微信å°ç¨åºæ´åçä¸å¥ UI åº
- wxSearch â 200+ - 微信å°ç¨åºä¼é çæç´¢æ¡
- wx-scrollable-tab-view â 200+ - å°ç¨åºå¯æ»å¨å¾ tab-view
- wetoast â 100+ - 微信å°ç¨åº toast å¢å¼ºæ件
- wx-alphabetical-listview â 100+ - 微信å°ç¨åºå¸¦åæ¯æ»å¨ç listview
- wx-drawer â 100+ - å°ç¨åºæ¨¡ä»¿ QQ6.0 侧æ»èå
- wxapp-charts â 100+ - 微信å°ç¨åºå¾è¡¨ charts ç»ä»¶
- chartjs-wechat-mini-app â 100+ - chartjs 微信å°ç¨åºéé
- wx-promise-request â 100+ - 微信å°ç¨åºè¯·æ±éå管çåº
- we-swiper â 100+ - 微信å°ç¨åºè§¦æ¸å 容æ»å¨è§£å³æ¹æ¡
- wxDraw â 100+ - 微信å°ç¨åº 2D å¨ç»åº
- citySelect â 100+ â 42 - 微信å°ç¨åºåå¸éæ©å¨
- weapp-cookie â 100+ - ä¸è¡ä»£ç 让微信å°ç¨åºæ¯æ cookie ðªð
- WeiXinProject - 微信å°ç¨åºå表ä¸æå·æ°åä¸æå è½½
- wepy-com-charts - 微信å°ç¨åº wepy å¾è¡¨æ§ä»¶
- wxapp-lock - 微信å°ç¨åºæå¿è§£é
- mini-gesture-lock - 微信å°ç¨åºæå¿è§£é(æ Android Canvaså¡é¡¿é®é¢)
- weapp.socket.io â 500+ - socket.io é£æ ¼ç websocket ç±»åº
- weapp-polyfill - [w3c æ å API polyfill
- wx-promise-pro â 666+ - 微信å°ç¨åº Promise åº
- wxMD5 - 微信å°ç¨åº MD5 åº
- wxBase64 - 微信å°ç¨åºbase64 åº
- xing-weapp-component - 微信å°ç¨åºåºç¡ç»ä»¶æ©å±
- wx-statuslayout - å°ç¨åºé¡µé¢ç¶æåæ¢ç»ä»¶
- minapp-api-promise - 微信å°ç¨åºææ API promise å
- minapp-slider-left - 微信å°ç¨åºå·¦åå é¤ç»ä»¶
- mp_canvas_drawer - canvasç»å¶å¾çå©æï¼ä¸ä¸ªjsonå°±å¶ä½å享æååå¾ç
- xing-weapp-editor - å°ç¨åºå¾æç¼è¾ç»ä»¶
- cue - A WX Compontent Tools
- wuss-weapp - ä¸æ¬¾é«è´¨éï¼ç»ä»¶é½å ¨ï¼é«èªå®ä¹ç微信å°ç¨åºUIç»ä»¶åº
- miniprogram-datepicker - å°ç¨åºæ¥æéæ©å¨ï¼æ¯æååï¼
- wx-api-promisify - ä¼é å°å°å¾®ä¿¡å°ç¨åºAPI Promiseå
- anka-brush - ä¸æ¬¾ä¸ºç®åå°ç¨åºécanvasç»å¾æä½èå建çå·¥å ·åº
- anka-tracker - å°ç¨åºæç¹åºï¼ç¨äºç»è®¡ç¨æ·è¡ä¸ºæ°æ®
- mpvue-calendar - 微信å°ç¨åº/æµè§å¨ç«¯çæ¥åç»ä»¶mpvue-calendarï¼åºäºmpvueå¹³å° æ¯æååãæå¨åæ¢ãå¯èªå®ä¹ã
- mp-swipe-card - å°ç¨åºå¡çæ»å¨ç»ä»¶,类似æ¢æ¢çææï¼è²ä¼¼ç°å¨åªæ¯æå·¦å³æ»å¨
- weapp.request - 为微信å°ç¨åºæä¾çç½ç»è¯·æ±ç»ä»¶ï¼æ¯ wx.request çæ©å±ï¼åºäº Promise APIï¼æ·»å ç¼åæ§å¶ã
- miniprogram-network - Redefine the Network API of MiniProgram(å°ç¨åºç½ç»è¯·æ±åº)
- we-validator - ç®åçµæ´»ç表åéªè¯æ件ï¼æ¯æå°ç¨åºãæµè§å¨ä»¥åNodejs端使ç¨ã
- wx-pulltorefresh-view - ç®åçµæ´»çä¸æä¸æå·æ°ç»ä»¶ï¼æ¯æ微信å°ç¨åº
- sol-weapp â 300+ -微信å°ç¨åºè¥éç»ä»¶:红å é¨ã大转ççè¥éç»ä»¶
- weapp-input-frame - 微信å°ç¨åºéªè¯ç è¾å ¥æ¡ç»ä»¶
- we-debug - ä¸æ¬¾çµæ´»ãæäºæå±ç微信å°ç¨åºè°è¯å·¥å ·
- weapp-qrcode - 微信å°ç¨åºçæäºç»´ç å·¥å ·
- cheers-mp-router - ð¦ç²¾å·§å¼ºå¤§çå°ç¨åºåçè·¯ç±
- wx-updata - 微信å°ç¨åºå®æ¹ setData æ¿ä»£åï¼åªä¿®æ¹ data ä¸ä½ å¸æä¿®æ¹çé¨å âï¸
- three-platformize - ä¸ä¸ªè®© THREE å¹³å°åç项ç®ï¼å·²éé 微信ãæ·å®ã头æ¡å°ç¨åº
Demo
å¯ä»¥ç´æ¥è¿è¡æå
- RebeccaHanjw/weapp-wechat-zhihu â 800+ - 仿ç¥ä¹
- imageslr/weapp-library â 500+ - å¨çº¿å书平å°ï¼30+页é¢/ç»ä»¶å/Mock Server/äºå¼åï¼
- imageslr/taro-library â 150+ - Taro + Redux + æ¬å° Mock Server å°ç¨åºç¤ºä¾é¡¹ç®
- wyq2214368/remove-water-mark-mp - ð¥çè§é¢å»æ°´å°å°ç¨åºï¼å«æå¡ç«¯ï¼
- deepkolos/three-platformize-demo-wechat - 微信å°ç¨åº THREE å å«16个loaderæµè¯demo
- deepkolos/wxmp-tensorflow - 微信å°ç¨åºä¸è¿è¡ææ°TensorFlowJSç解å³æ¹æ¡
- xtanyu/parsing-mini - çè§é¢å»æ°´å°å°ç¨åºï¼å«Javaçæ¬æå¡ç«¯ï¼
- realyao/Focus-clock â 100+ - â æ¶é´ç®¡çå°ç¨åºï¼ä¸æ³¨æ¶éï¼éææ¶é´ç®¡çãç®æ 计åãTodoå¾ åãç½åªå£°ãæé¨ç½² éåæ°æå¦ä¹ å ¥é¨ï¼
- mark420524/photo - è¯ä»¶ç §å°ç¨åº
- xtanyu/bookkeeping - æçè®°è´¦
- jinganix/guess - çææ¯è°å°ç¨åºï¼å å«åå端代ç
æ°æ®æ¥å£æé®é¢
- EastWorld/wechat-app-mall â 3000+ - 微信å°ç¨åºåå
- tumobi/nideshop-mini-program â 2000+ - åºäº Node.js + MySQL å¼åçå¼æºå¾®ä¿¡å°ç¨åºåå
- huangjianke/Gitter â 700+ - Gitter for GitHub - å¯è½æ¯ç®åé¢å¼æé«çGitHubå°ç¨åºå®¢æ·ç«¯
- lypeer/wechat-weapp-gank â 600+) - Gank 客æ·ç«¯
- wangmingjob/weapp-weipiao â 300+ - 微票
- charleyw/wechat-weapp-redux â 300+ - Redux ç»å®åº
- jectychen/wechat-v2ex â 300+) - V2EX
- 18380435477/WeApp â 300+ - 仿微信
- zce/weapp-boilerplate â 300+ - 微信å°ç¨åºå¿«éå¼å骨æ¶
- bayetech/wechat_mall_applet â 300+ - çµåå¹³å°
- lanshan-studio/wecqupt â 300+ - We éé®
- myronliu347/wechat-app-zhihudaily â 200+ - ç¥ä¹æ¥æ¥
- harveyqing/BearDiary â 200+ - å°çã®æ¥è®°
- leancloud/leantodo-weapp â 200+ - éæ LeanCloud å®ç°ç Todo list
- SuperKieran/weapp-artand â 200+ - Artand
- dongweiming/weapp-zhihulive â 200+ - ç¥ä¹ Live
- eyasliu/wechat-app-music â 200+ - é³ä¹ææ¾å¨
- ahonn/weapp-one â 200+ - 仿 ONE
- giscafer/wechat-weapp-mapdemo â 200+ - å°å¾å¯¼èªãmarkeræ 注 ï¼ä¸åç»´æ¤ï¼
- yaoshanliang/weapp-ssha â 200+ - ä¼ä¸å®£ä¼ å°ç¨åº
- hilongjw/weapp-gold â 100+ - æé主页信æ¯æµ
- zce/weapp-douban â 100+ - è±ç£çµå½±
- hingsir/weapp-douban-film â 100+ - è±ç£çµå½±
- kunkun12/weapp - å°ç¨åº hello world å°é²
- natee/wxapp-2048 â 100+ - 2048 å°æ¸¸æ
- SeptemberMaples/wechat-weapp-demo â 100+ - è´ç©è½¦
- hijiangtao/weapp-newsapp - å ¬ä¼å·çé¨æç« ä¿¡æ¯æµ
- charleyw/wechat-weapp-redux-todos â 100+ - éæ Redux å®ç°çTodo list
- kraaas/timer â 100+ - çªèæ¶é
- ericzyh/wechat-chat â 100+ - è天室
- BelinChung/wxapp-hiapp â 100+ - HiApp
- hardog/wechat-app-flexlayout â 100+ - flexlayout
- dunizb/wxapp-sCalc â 100+ - ç®æ计ç®å¨
- litt1e-p/weapp-girls â 100+ - è±ç£ç¾å¥³/妹åå¾
- liumulin614/BeautifulGirl - ç¾å¥³æ¨¡ç¹
- romoo/weapp-demo-breadtrip â 100+ - é¢å æ è¡
- zhuweiyou/fetop100 â 100+ - å端TOP100
- vace/wechatapp-news-reader â 100+ - æ°é»é 读å¨
- yaoshanliang/weapp-jump â 100+ - è·³ä¸è·³
- yaoshanliang/weapp-monument-valley â 100+ - 纪念ç¢è°·
- YYJeffrey/july_client â 100+ - ä¸æï¼ä¸æ¬¾ç¤¾äº¤å°ç¨åºï¼éå 容åå¸ãå¨æå享ãç¹èµè¯è®ºãäºå¨è天çåè½ï¼
- Symous/WechatApp-BaisiSister - ç¾æä¸å¾å§
- githinkcn/Giteer - Giteer For ç äºï¼åºäºTaro + Taro UI + Dvaçå°ç¨åºã
- DengKe1994/weapp-calculator - IOS 计ç®å¨
- monkindey/wx-github - GitHub ç®å
- fluency03/weapp-500px - å½å¤æå½±ç¤¾åº 500px
- weapp-film - æ·ç¥¨ç¥¨
- xujinyang/CoderCalendar-WeApp - ç¨åºåèé»å
- zhengxiaowai/weapp-github - github
- Seahub/PigRaising - PigRaising
- brucevanfdm/WeChatMeiZhi - 妹åå¾
- uniquexiaobai/wechat-app-githubfeed - GitHubFeed
- zce/weapp-todos - TODOS ä»»å¡æ¸ å
- bruintong/wechat-webapp-douban-movie - è±ç£çµå½±
- bruintong/wechat-webapp-douban-location - è±ç£åå
- arkilis/weapp-jandan - ç è
- bodekjan/wechat-weather - 微信天æ°
- jasscia/ChristmasHat - æè¦å£è¯å¸½
- nanwangjkl/sliding_puzzle - æ»åæ¼å¾
- kaiwu/weui-scalajs - 使ç¨Scala.jså¼å
- tinajs/tina-hackernews - Hacker News çç¹
- mohuishou/scuplus-wechat - We å·å¤§
- hankzhuo/wx-v2ex - v2ex
- Hongye567/weapp-mark - 仿 Mark å½±åç微信å°ç¨åº
- w1109790800/We-Todo - åºäºLeanCloudçTodo-List
- jae-jae/weapp-github-trending - Githubä»æ¥æ¦å
- steedos/mini-vip - åçå¾®ç«ãå¾®åå
- alex1504/wx-guita_tab - å£è¢åä»
- lonnng/etym - èæè¯æºå©æ
- wuhou123/wxxcx - æ¦ä¾¯çç«ï¼åºäºwepyæ建,æ´åäºnå¤æ¥è¯¢å·¥å ·ï¼å¿«éï¼å¤©æ°ï¼è®°è´¦ï¼æç¬è§é¢çï¼
- upupming/HITMers - åç©é¦å°å©æï¼ç»è®¡å¼ç表ãç¾å°ãå¼çæ¥ååå¤å¿å½ãå½é åãStreamable.com è§é¢ä¸ä¼ çï¼
- LDouble/WeOUC - WeOUC(æå¡å°ç¨åº)
- Airmole/ShellBox - è´å£³å°çåï¼æ ¡åæå¡ä¿¡æ¯æ¥è¯¢ç±»å·¥å ·ï¼è·2019é«æ ¡å°ç¨åºå¼å大èµåååºäºçå¥ï¼
- aquanlerou/WeHalo â 200+ - ç±æ²ä»£ç çç«ï¼WeHalo ç®çº¦é£ ç微信å°ç¨åºçå客â¨ï¼
- WarpPrism/SubwayRoutineMP - ãä¸äº¬é¦å°æ¼è°·æ°å å¡å·´é»å°é线路å¾ðã
- GoKu-gaga/today - å£è¢å·¥å ·ï¼ä¸ä¸ªå°å·¥å ·çéåï¼
- cy920820/weapp-motor-movies - 马达çµå½±å©æï¼ä¸ä¸ªé¢çº¿çµå½±å°å©æï¼
- Gwokhov/chronus - Chronus ç®æ æ¥è®°ï¼ä¸æ¬¾è½å¸®å©ä½ 管ççæ´»ç®æ çäºå¼å微信å°ç¨åºï¼
- imliubo/Wechat_MQTT_ESP8266_BaiduIoT - 微信æºè½å°ç®¡å®¶ (使ç¨å¾®ä¿¡å°ç¨åºæ§å¶ä½ ç硬件设å¤)
- yuzexia/iw3cplus - å端社åºwww.w3cplus.comç微信å°ç¨åº
- RAOE/show-videos - ç§è§é¢ï¼å¾®ä¿¡å°ç¨åºçè§é¢ç¤¾äº¤è½¯ä»¶ï¼è§é¢ä¸ä¼ ï¼é³è§é¢åæï¼è¯è®ºï¼ç¹èµï¼è½¬åï¼å享çï¼
- NewFuture/miniprogram-template - åçAPI纯TypeScriptå¼åå°ç¨åº(VSCode as IDE)ä¸å®æ´å¼åæµç¨
- ZhuPeng/mp-githubtrending - 以 Feed æµå½¢å¼æ¥ç GitHub Trending ä»åºéåçå·¥å ·
- yociduo/scrum-planning-poker - Scrumææ·ä¼°ç®,åºäºwepyæ建
- kilakila-heart/fuliba-front - ä¿¡æ¯æµç¦å©å§å°ç¨åº
- lsqy/taro-music - ðåºäºtaro + taro-ui + redux + typescript å¼åçç½æäºé³ä¹å°ç¨åº
- 仿å马æé lite - 微信å°ç¨åºåçå¼åç仿å马æé å°ç¨åºï¼æ度éåæ°æå ¥é¨ï¼
- branliang/game-stop-app - PSNéä»·äºï¼ä¸ä¸ªå¯ä»¥è®¢é PS4游æä»·æ ¼çå·¥å ·ï¼
- wk989898/wxchat-mail - 仿Gmailé®ç®±ç微信å°ç¨åº
- AnsonZnl/bookshelf - ðåºäºäºå¼åç书æ¶å°ç¨åºï¼éæç¨ï¼ð
- arleyGuoLei/wx-words-pk â 100+ - ð¥2020 äºå¼åå®ç°åè¯å¯¹æå°ç¨åºï¼éæºå¹é ã人æºå¯¹æã好å对æï¼ï¼ä¸ä¸UI
- arleyGuoLei/wechat-1password - ððºææ¬å¯ç ï¼äºå¼åå®ç°çAESå å¯å¯ç æ¬ï¼æ¯ææ纹ã人è¸ï¼UIç®çº¦å¤§æ¹
- wilhantian/periodic-table - ðç²¾è´çå ç´ å¨æ表å°ç¨åº
- terryso/super9 - ð¥æé³ä¸é®å»æ°´å°å°ç¨åº: Taro + 微信äºå¼å
- redhat123456/upPhysicalExercise - ðupä½è½è®ç»å°ç¨åº(å¥èº«è®ç»ãè§çè§é¢ãå¶å®è®¡åäºä¸èº«ç综åå°ç¨åº)
- redhat123456/Tanger_query - ðæ¥è¯¢å°ç¨åº(æ¥è¯¢åç§åæ ·çä¿¡æ¯çå°ç¨åº)
- mark420524/question - å¦ä¹ çé¢å°ç¨åºï¼è¯è¯æèµå°å·¥å ·-æ©æçå°ç¨åº
- Chadwuo/li-ji-weapp - ð¥è®°å½å管ç人æ æ¥å¾ï¼ç»ä½ æ¹ä¾¿å¿«æ·ç人æ è®°è´¦ä½éªï¼ä¸ä¸åæä½ ç人æ 记账软件ï¼å ±äº«è®°è´¦ï¼å ¨å®¶äººå ±äº«è´¦æ¬
- mark420524/guess - çå¾çæè¯å¾®ä¿¡å°ç¨åº
Top Related Projects
🎉 A curated list of awesome things related to Vue.js
A UI library by WeChat official design team, includes the most useful widgets/modules in mobile web applications.
开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/
🦎 一套代码运行多端,一端所见即多端所见
A cross-platform framework using Vue.js
A framework for building Mobile cross-platform UI
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot