application-dev-guide.md 3.3 KB
Newer Older
E
ester.zhou 已提交
1
# Application Development Overview
2

E
ester.zhou 已提交
3
The application development documents provide reference for you to develop applications using the APIs provided by OpenHarmony. They walk you through how to use JavaScript APIs to develop applications on the standard system.
4

E
ester.zhou 已提交
5
The documents are carefully organized as follows:
6

E
ester.zhou 已提交
7
### Getting Started
8

E
ester.zhou 已提交
9
[Here](quick-start/start-overview.md) you'll learn how to quickly get started with OpenHarmony application development.
10

E
ester.zhou 已提交
11
Browse the documents on the instructions for quickly building your first application and the basics about OpenHarmony applications.
E
ester.zhou 已提交
12

E
ester.zhou 已提交
13
Check out the development fundamentals, which comprise descriptions of the package structure configuration file for OpenHarmony applications and the instructions for use of resource files.
E
ester.zhou 已提交
14 15 16 17 18 19 20

### Development

To facilitate your application development, we provide development guidelines for key features.

First thing first, familiarize yourself with the two cornerstone frameworks in OpenHarmony applications:

E
ester.zhou 已提交
21
- Application framework: [Ability Development](ability/fa-brief.md)
E
ester.zhou 已提交
22 23 24 25 26
- UI framework: [UI Development](ui/arkui-overview.md)

All applications should be developed on top of these frameworks.

Then, equip yourself for developing the key features, with the following guidelines:
Z
zengyawen 已提交
27
- [Common Event and Notification](notification/notification-brief.md)
E
ester.zhou 已提交
28 29 30 31 32
- [Window Manager](windowmanager/window-overview.md)
- [WebGL](webgl/webgl-overview.md)
- [Media](media/audio-overview.md)
- [Security](security/userauth-overview.md)
- [Connectivity](connectivity/ipc-rpc-overview.md)
Z
zengyawen 已提交
33
- [Telephony](telephony/telephony-overview.md)
E
ester.zhou 已提交
34
- [Data Management](database/database-mdds-overview.md)
Z
zengyawen 已提交
35
- [Task Management](task-management/background-task-overview.md)
E
ester.zhou 已提交
36 37 38
- [Device](device/usb-overview.md)
- [Device Usage Statistics](device-usage-statistics/device-usage-statistics-overview.md)
- [DFX](dfx/hiappevent-overview.md)
H
HelloCrease 已提交
39
- [Internationalization](internationalization/international-overview.md)
W
wusongqing 已提交
40 41
- [OpenHarmony IDL Specifications and User Guide](IDL/idl-guidelines.md)
- [Using Native APIs in Application Projects](napi/napi-guidelines.md)
E
ester.zhou 已提交
42 43 44 45 46 47 48 49

### Tools

DevEco Studio is a high-performance integrated development environment (IDE) recommended for developing OpenHarmony applications.
[Here](https://developer.harmonyos.com/en/docs/documentation/doc-guides/ohos-deveco-studio-overview-0000001263280421) you can learn everything about DevEco Studio, including how to use this tool to create a project and sign, debug, and run an application.

### Hands-On Tutorials

W
wusongqing 已提交
50
To make you better understand how functions work together and jumpstart your application development projects, we provide stripped-down, real-world [samples](https://gitee.com/openharmony/app_samples/blob/master/README.md) and [codelabs](https://gitee.com/openharmony/codelabs).
E
ester.zhou 已提交
51 52 53 54 55 56

### API References

API references encompass all components and APIs available in OpenHarmony, helping you use and integrate APIs more effectively.

They are organized as follows:
W
wusongqing 已提交
57 58 59 60 61 62 63 64 65 66

- [Component Reference (TypeScript-based Declarative Development Paradigm)](reference/arkui-ts/Readme-EN.md)

- [Component Reference (JavaScript-based Web-like Development Paradigm)](reference/arkui-js/Readme-EN.md)

- [JS and TS APIs](reference/apis/js-apis-DataUriUtils.md)

- Native APIs
  - [Standard Library](reference/native-lib/third_party_libc/musl.md)
  - [Node_API](reference/native-lib/third_party_napi/napi.md) 
W
wusongqing 已提交
67