@nativescript/core 9.0.11-next.1 → 9.0.12-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,47 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="
|
|
3
|
-
<img alt="NativeScript" src="https://
|
|
2
|
+
<a href="https://nativescript.org">
|
|
3
|
+
<img alt="NativeScript" src="https://raw.githubusercontent.com/NativeScript/artwork/main/logo/export/NativeScript_Logo_Dark_Transparent.png" width="100"/>
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<h1 align="center">NativeScript</h1>
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
<p align="center">
|
|
10
|
+
<b>Build truly native apps with JavaScript.</b>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
13
|
+
<p align="center">
|
|
14
|
+
<a href="https://www.npmjs.com/package/@nativescript/core"><img src="https://img.shields.io/npm/v/@nativescript/core.svg" alt="npm version"></a>
|
|
15
|
+
<a href="https://github.com/NativeScript/NativeScript/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="license"></a>
|
|
16
|
+
<a href="https://www.npmjs.com/package/@nativescript/core"><img src="https://img.shields.io/npm/dm/@nativescript/core.svg" alt="downloads"></a>
|
|
17
|
+
</p>
|
|
18
|
+
|
|
19
|
+
<p align="center">
|
|
20
|
+
<a href="https://docs.nativescript.org">Getting Started</a> ·
|
|
21
|
+
<a href="https://docs.nativescript.org/setup/">Environment Setup</a> ·
|
|
22
|
+
<a href="https://nativescript.org/showcase">Showcase</a> ·
|
|
23
|
+
<a href="https://github.com/NativeScript/NativeScript/blob/main/tools/notes/CONTRIBUTING.md">Contribute</a> ·
|
|
24
|
+
<a href="https://nativescript.org/discord">Community</a>
|
|
25
|
+
</p>
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
A JavaScript library providing an easy-to-use API for interacting with native platform APIs.
|
|
30
|
+
|
|
31
|
+
- **Truly Native**: Access 100% of native platform APIs with JavaScript or TypeScript
|
|
32
|
+
- **High Performance**: No bridges — direct native bindings
|
|
33
|
+
- **Cross-Platform**: Share code across platforms while maintaining native look and feel
|
|
34
|
+
|
|
35
|
+
## 📦 Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install @nativescript/core
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## 📖 Documentation
|
|
42
|
+
|
|
43
|
+
The full documentation for NativeScript can be found on our [website](https://docs.nativescript.org/).
|
|
44
|
+
|
|
45
|
+
## 📄 License
|
|
10
46
|
|
|
11
|
-
|
|
47
|
+
NativeScript is [MIT licensed](https://github.com/NativeScript/NativeScript/blob/main/LICENSE).
|
package/package.json
CHANGED