smallapp
is a Chinese miniapp architecture implementation.
As of now, there are over 7 million miniapps in China, Chinese people do not like to use browsers or search engines.
Musk envied WeChat
and he really wanted this miniapp architecture, so I opened it up.
smallapp follows WeChat's miniapp standard, you should refer to WeChat's documentation.
<view>
<text>{{count}}</text>
<button bindtap="add">+</button>
</view>
Page({
data: {
count: 0
},
add: () {
this.setData({
count: this.data.count + 1
})
wx.showToast({
title: 'count is added!'
})
}
})
- compiler
smallapp build -e app.json -o /dist
This step will package the miniapp project into js files, which is double threaded. The jsx file is used for rendering threads, and the js file is used for logical threads.
- worker
The logical thread is responsible for running JavaScript logic, and you need to find a JavaScript runtime, such as worker.
- Web worker
- Cloudflare worker
- quickjs/v8/hermes
As long as it has the standard API and communication mechanism of the worker, it can serve as the logical layer of the miniapp.
- Native container
Miniapps runs on a super app, such as Wechat/Alipay/Baidu and its API is provided by the native container.