Go to file
openharmony_ci 1118905798
!836 修改es2abc_config.gni引入位置
Merge pull request !836 from kangchongtao/0711
2024-08-01 15:35:21 +00:00
runtime f 2023-05-15 11:23:39 +08:00
test [jsfw]remove i18n UT 2022-01-26 15:46:33 +08:00
.babelrc zhongjianfei@huawei.com 2021-09-14 15:38:47 +08:00
.eslintrc zhongjianfei@huawei.com 2021-09-14 15:38:47 +08:00
.gitattributes update jsfw code for wgr 2021-12-22 18:13:34 +08:00
.gitignore IssueNo: #I59PQL 2022-05-28 14:45:10 +08:00
build_strip_native_min.js node版本回退 2024-07-29 17:06:15 +08:00
BUILD.gn !836 修改es2abc_config.gni引入位置 2024-08-01 15:35:21 +00:00
bundle.json 部件独立编译整改 2024-05-24 01:08:18 +00:00
gen_snapshot.sh zhongjianfei@huawei.com 2021-09-14 15:38:47 +08:00
js_framework_build.sh node版本回退 2024-07-29 17:06:15 +08:00
LICENSE update OpenHarmony 2.0 Canary 2021-06-02 02:29:46 +08:00
NOTICE update OpenHarmony 2.0 Canary 2021-06-02 02:29:46 +08:00
OAT.xml update weex version 2023-03-24 10:04:45 +08:00
package-lock.json node版本回退 2024-07-29 17:06:15 +08:00
package.json node版本回退 2024-07-29 17:06:15 +08:00
prebuild_env.sh replace nodejs dir to current 2023-06-04 20:57:22 +08:00
README.md Optimize build js 2022-08-27 14:34:15 +08:00
README.OpenSource update weex version 2023-03-24 10:04:45 +08:00
tsconfig.json update OpenHarmony 2.0 Canary 2021-06-02 02:29:46 +08:00
tslint.json zhongjianfei@huawei.com 2021-09-14 15:38:47 +08:00

JSFramework

The JSFramework is a framework for building mobile cross-platform UI written in TypeScript.

File Structure

  • runtime/all source code
    • ./main/JS bundle parsing, data methods, event methods, reactivity, etc.
    • ./preparation/JS framework initialization
    • ./utils/some utils
    • ./vdom/VM compilation
  • test/ut/unit test file
  • .eslintrceslint configure
  • BUILD.gncompiling file of JS UI framework for NinjaJS
  • build_jsmock_system_plugin.js, build_strip_native_min.js: build JS framework
  • js_framework_build.shscript file for JS framework building
  • LICENSEApache License
  • NOTICEthird party open source software notice
  • package.jsondefine what libraries will be installed into node_modules when you run npm install
  • tsconfig.jsonthe compiler options required to compile the project

Usage

Here are simplified instructions to how to get started. The following commands are the same both on Windows and Mac platforms.

1. Prerequisites

Please make sure that the following commands work before trying to build:

> npm -v
  6.14.8
> node -v
  v12.18.3

Your npm and node should be of a later version. You can upgrade them to the latest stable version.

2. Installing

RollUp tool for packaging has been configured in build_jsmock_system_plugin.js, build_strip_native_min.js. So after the preceding conditions are met, we can start installing right now.

First, we go to the root directory of the project:

cd ..
cd third_party/jsframework/

And then install the dependencies:

npm install

Note: If some errors occur, delete the generated package node_modules and run npm install again.

3. Building

There are two ways for building JS framework:

1. npm run build
2. in the root dir: run the build.sh script, which is built by gn

ESLint

You can config more babel and ESLint plugins in .eslintrc. You'd better make sure there are no errors of esLint rules after you change them.