Wechat Devtool 1
Wechat Miniapplication is literally an application based on Wehcat. Different from ordinary applications, it is said that these miniapplications can be used without downloading & installing. In fact, it is because they have a very small size (less than 2M) so that the users won’t be aware of the process of downloading.
Wechat developer tool: a specially designed IDE for wechat miniapplications.
The regular code structure of a miniapplication:
pages
It is recommended to create all the codes for each page of the application in this folder.  log
This is an example folder for a log page in the application. In a page folder, there will usually be four files:
log.js: .js file is responsible for the logical components of the page. Using javascript, developers can bind events to a button, pass parameters, etc.
log.json: I haven't worked much about the .json files so far. As far as I know, it is resonsible for the page's "setup": page title, text style, background color...
log.wxml: .wxml is derived from html. It sues a language syntax similar to html to create elements like `<view></view>`, `<button></button>` on the page.
log.wxss: wxss is derived from css. It works similarly. I use it to arrange the elements shown on the page, like position and flex display.