# ark_ts2abc **Repository Path**: liu-qiang12/ark_ts2abc ## Basic Information - **Project Name**: ark_ts2abc - **Description**: ts2abc组件是方舟平台的一个组件,其作为方舟编译器中JavaScript语言的前端工具,支持将JavaScript文件转换为方舟字节码文件 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1055 - **Created**: 2022-03-22 - **Last Updated**: 2022-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ts2abc - [ts2abc ](#ts2abc-) - [Introduction](#introduction) - [Directory Structure](#directory-structure) - [Build](#Build) - [Usage Guidelines](#usage-guidelines) - [Repositories Involved](#repositories-involved) ## Introduction ts2abc is a front-end tool in the ARK Runtime Subsystem. It converts JavaScript(JS) files into ARK bytecode files. For more information, see: [ARK Runtime Subsystem](https://gitee.com/openharmony/docs/blob/master/en/readme/ARK-Runtime-Subsystem.md). ## Directory Structure ``` /ark/ts2abc/ ├── test262 # scripts for configuration and running Test262 ├── testTs # system test cases ├── ts2panda ├── scripts # dependency scripts ├── src # source code directory ├── templates # ruby templates ├── tests # unit test cases ├── tools # tools provided by ts2abc └── ts2abc # ts2abc source code ``` ## Build ts2abc uses the command line interaction mode and converts JS code into ARK bytecode files that can be run on an ARK runtime system. ts2abc supports Windows, Linux, and macOS. Front-end tools, converting JS source code into ARK bytecode, can be built by specifying the `--build-target` with `ark_ts2abc` on Linux. ``` $ ./build.sh --product-name Hi3516DV300 --build-target ark_ts2abc_build ``` ### Usage Guidelines Install `node` and `npm` convert JS to ARK bytecode ``` $ cd out//hi3516dv300/clang_x64/ark/ark/build $ npm install $ node --expose-gc src/index.js [options] file.js ``` If no parameter is specified for **\[options\]**, an ARK binary file is generated by default.