当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
5 Star 38 Fork 5

liu / trad
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 3.37 KB
一键复制 编辑 原始数据 按行查看 历史
liu 提交于 2020-03-15 17:05 . docs: update roadmap

Trad

GitHub Actions Build Status

Introduction

(中文/English)

A lightweight and C based language for building user interfaces.

Trad is:

  • Base on C: Trad compiles to readable, standards-based C. Its relationship with C is like the relationship between TypeScript and JavaScript.
  • Optimized for UI: Simplify your development work with syntax features specialized around the needs of user interface creation.
  • Easy to use: Designed for C developers' usage habits, you can get started quickly without having to spend a lot of time reading complex documents.
  • Not Productive: The current version of the architecture design has not been stable and is only used for technical communication, not for production.
  • Community-driven: small size, easy to read and modify. Anyone can participate in the design of language specifications, and this project development status is affected by community activity.
  • Cross platform: Support for Linux and Windows desktop platforms, but does not support Mac OS and mobile platforms

Trad's syntax is based on JavaScript, it has good compatibility with existing JavaScript development tools/editor extensions, and it won't change much for a long time, so you can temporarily write it as JavaScript.

Example

Installing

npm install -g tradlang

Usage

Compile to C source file:

tradc example.jsx

Compile to binary file:

gcc -c example.jsx.c
gcc -o example example.jsx.o -lLCUI

Note: The UI layer of the Trad application is powered by LCUI and you should install it before compiling.

The current version only implements the features required for the smallest sample application and cannot be applied to actual projects. Please wait for future updates.

Contribute

There are many ways to contribute to Trad.

Trad has adopted the code of conduct defined by the Contributor Covenant. This document is used across many open source communities, and we think it articulates our values well. For more, see the Code of Conduct.

Roadmap

The main tasks are listed below, for detailed work plans and progress please see the project boards.

  • Core
    • Rewrite Trad's compiler
    • Basic syntax
    • Basic data type
    • Compatible with C syntax
    • Template literals (Template strings)
    • Function nesting and Closures
    • Decorator
    • await/async
    • Standard library
  • LCUI extension
    • Redesign language binding of LCUI
    • Implement the Widget.render() method
    • @UIThread decorator
  • Tool chain
    • Compiler
      • Command-line interface
      • Friendly error output
      • Line comments
    • Package manager
    • Building tool
  • Documention
    • FAQ
    • Language specification
    • Tutorial

License

Trad is MIT licensed.

JavaScript
1
https://gitee.com/lc-soft/trad.git
git@gitee.com:lc-soft/trad.git
lc-soft
trad
trad
master

搜索帮助