domquery-com 1.0.1 → 1.0.2
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.ko.md +15 -15
- package/README.md +15 -15
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> 웹앱 개발에 필요한 모든 기능을 하나의 통합 생태계로 제공합니다
|
|
4
4
|
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://github.com/domquery-com/domquery)
|
|
7
7
|
|
|
8
8
|
**DomQuery**는 웹앱 개발에 필요한 모든 기능을 통합한 현대적인 JavaScript 라이브러리입니다.
|
|
9
9
|
하이브리드 앱/WebView 환경에 특화되어 있습니다.
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
npm install domquery-com
|
|
40
40
|
|
|
41
41
|
# 특정 버전 설치
|
|
42
|
-
npm install domquery-com@1.0.
|
|
42
|
+
npm install domquery-com@1.0.2
|
|
43
43
|
|
|
44
44
|
# 개발 의존성으로 설치
|
|
45
45
|
npm install domquery-com --save-dev
|
|
@@ -54,7 +54,7 @@ npm install -g domquery-com
|
|
|
54
54
|
yarn add domquery-com
|
|
55
55
|
|
|
56
56
|
# 특정 버전 설치
|
|
57
|
-
yarn add domquery-com@1.0.
|
|
57
|
+
yarn add domquery-com@1.0.2
|
|
58
58
|
|
|
59
59
|
# 개발 의존성으로 설치
|
|
60
60
|
yarn add domquery-com --dev
|
|
@@ -66,7 +66,7 @@ yarn add domquery-com --dev
|
|
|
66
66
|
pnpm add domquery-com
|
|
67
67
|
|
|
68
68
|
# 특정 버전 설치
|
|
69
|
-
pnpm add domquery-com@1.0.
|
|
69
|
+
pnpm add domquery-com@1.0.2
|
|
70
70
|
|
|
71
71
|
# 개발 의존성으로 설치
|
|
72
72
|
pnpm add -D domquery-com
|
|
@@ -153,14 +153,14 @@ npm에 패키지가 등록되면 **자동으로 CDN이 제공**됩니다. npm
|
|
|
153
153
|
```html
|
|
154
154
|
<!-- npm 기반 CDN (자동 제공) - 권장 -->
|
|
155
155
|
<!-- 개발용 -->
|
|
156
|
-
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.
|
|
156
|
+
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.2/domquery.js"></script>
|
|
157
157
|
<!-- 또는 -->
|
|
158
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
158
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/domquery.js"></script>
|
|
159
159
|
|
|
160
160
|
<!-- 프로덕션 권장 -->
|
|
161
|
-
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.
|
|
161
|
+
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.2/domquery.min.js"></script>
|
|
162
162
|
<!-- 또는 -->
|
|
163
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
163
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/domquery.min.js"></script>
|
|
164
164
|
|
|
165
165
|
<!-- 최신 버전 사용 (버전 번호 생략 가능) -->
|
|
166
166
|
<script src="https://unpkg.com/domquery-com/domquery.min.js"></script>
|
|
@@ -169,7 +169,7 @@ npm에 패키지가 등록되면 **자동으로 CDN이 제공**됩니다. npm
|
|
|
169
169
|
> **참고**:
|
|
170
170
|
> - **npm 기반 CDN**은 npm에 패키지가 등록되면 자동으로 제공됩니다.
|
|
171
171
|
> - `unpkg`와 `jsdelivr` 모두 무료로 제공하는 CDN 서비스입니다.
|
|
172
|
-
> - 프로덕션에서는 특정 버전(`@1.0.
|
|
172
|
+
> - 프로덕션에서는 특정 버전(`@1.0.2`)을 명시하는 것을 권장합니다.
|
|
173
173
|
> - `package.json`의 `unpkg`와 `jsdelivr` 필드가 자동으로 minified 버전을 가리킵니다.
|
|
174
174
|
|
|
175
175
|
#### 추가 모듈 로드 (Loading Additional Modules)
|
|
@@ -178,17 +178,17 @@ npm에 패키지가 등록되면 **자동으로 CDN이 제공**됩니다. npm
|
|
|
178
178
|
|
|
179
179
|
```html
|
|
180
180
|
<!-- 메인 라이브러리 (Main library) -->
|
|
181
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
181
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/domquery.min.js"></script>
|
|
182
182
|
|
|
183
183
|
<!-- 추가 모듈 (Additional modules) -->
|
|
184
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
185
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
186
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
187
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
184
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/src_min/alert.min.js"></script>
|
|
185
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/src_min/ajax.min.js"></script>
|
|
186
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/src_min/select.min.js"></script>
|
|
187
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/src_min/animate.min.js"></script>
|
|
188
188
|
<!-- 등등... -->
|
|
189
189
|
|
|
190
190
|
<!-- 또는 jsdelivr 사용 -->
|
|
191
|
-
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.
|
|
191
|
+
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.2/src_min/alert.min.js"></script>
|
|
192
192
|
```
|
|
193
193
|
|
|
194
194
|
> **참고**: `package.json`의 `files` 필드에 포함된 모든 파일은 CDN을 통해 접근 가능합니다.
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> Complete all features needed for web app development in one unified ecosystem
|
|
4
4
|
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://github.com/domquery-com/domquery)
|
|
7
7
|
|
|
8
8
|
**DomQuery** is a modern JavaScript library that integrates all features needed for web app development.
|
|
9
9
|
It is especially optimized for hybrid app/WebView environments.
|
|
@@ -39,7 +39,7 @@ Install using the following commands in terminal (command line):
|
|
|
39
39
|
npm install domquery-com
|
|
40
40
|
|
|
41
41
|
# Install specific version
|
|
42
|
-
npm install domquery-com@1.0.
|
|
42
|
+
npm install domquery-com@1.0.2
|
|
43
43
|
|
|
44
44
|
# Install as dev dependency
|
|
45
45
|
npm install domquery-com --save-dev
|
|
@@ -54,7 +54,7 @@ npm install -g domquery-com
|
|
|
54
54
|
yarn add domquery-com
|
|
55
55
|
|
|
56
56
|
# Install specific version
|
|
57
|
-
yarn add domquery-com@1.0.
|
|
57
|
+
yarn add domquery-com@1.0.2
|
|
58
58
|
|
|
59
59
|
# Install as dev dependency
|
|
60
60
|
yarn add domquery-com --dev
|
|
@@ -66,7 +66,7 @@ yarn add domquery-com --dev
|
|
|
66
66
|
pnpm add domquery-com
|
|
67
67
|
|
|
68
68
|
# Install specific version
|
|
69
|
-
pnpm add domquery-com@1.0.
|
|
69
|
+
pnpm add domquery-com@1.0.2
|
|
70
70
|
|
|
71
71
|
# Install as dev dependency
|
|
72
72
|
pnpm add -D domquery-com
|
|
@@ -153,14 +153,14 @@ When a package is registered on npm, **CDN is automatically provided**. You can
|
|
|
153
153
|
```html
|
|
154
154
|
<!-- npm-based CDN (automatically provided) - Recommended -->
|
|
155
155
|
<!-- Original version (Development) -->
|
|
156
|
-
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.
|
|
156
|
+
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.2/domquery.js"></script>
|
|
157
157
|
<!-- or -->
|
|
158
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
158
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/domquery.js"></script>
|
|
159
159
|
|
|
160
160
|
<!-- Minified version (Production recommended) -->
|
|
161
|
-
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.
|
|
161
|
+
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.2/domquery.min.js"></script>
|
|
162
162
|
<!-- or -->
|
|
163
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
163
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/domquery.min.js"></script>
|
|
164
164
|
|
|
165
165
|
<!-- Latest version (version number can be omitted) -->
|
|
166
166
|
<script src="https://unpkg.com/domquery-com/domquery.min.js"></script>
|
|
@@ -169,7 +169,7 @@ When a package is registered on npm, **CDN is automatically provided**. You can
|
|
|
169
169
|
> **Note**:
|
|
170
170
|
> - **npm-based CDN** is automatically provided when a package is registered on npm.
|
|
171
171
|
> - Both `unpkg` and `jsdelivr` are free CDN services.
|
|
172
|
-
> - It is recommended to specify a specific version (`@1.0.
|
|
172
|
+
> - It is recommended to specify a specific version (`@1.0.2`) in production.
|
|
173
173
|
> - The `unpkg` and `jsdelivr` fields in `package.json` automatically point to the minified version.
|
|
174
174
|
|
|
175
175
|
#### Loading Additional Modules (추가 모듈 로드)
|
|
@@ -178,17 +178,17 @@ If you need to load additional modules separately, you can access them via CDN:
|
|
|
178
178
|
|
|
179
179
|
```html
|
|
180
180
|
<!-- Main library (메인 라이브러리) -->
|
|
181
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
181
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/domquery.min.js"></script>
|
|
182
182
|
|
|
183
183
|
<!-- Additional modules (추가 모듈) -->
|
|
184
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
185
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
186
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
187
|
-
<script src="https://unpkg.com/domquery-com@1.0.
|
|
184
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/src_min/alert.min.js"></script>
|
|
185
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/src_min/ajax.min.js"></script>
|
|
186
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/src_min/select.min.js"></script>
|
|
187
|
+
<script src="https://unpkg.com/domquery-com@1.0.2/src_min/animate.min.js"></script>
|
|
188
188
|
<!-- etc... -->
|
|
189
189
|
|
|
190
190
|
<!-- Or using jsdelivr -->
|
|
191
|
-
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.
|
|
191
|
+
<script src="https://cdn.jsdelivr.net/npm/domquery-com@1.0.2/src_min/alert.min.js"></script>
|
|
192
192
|
```
|
|
193
193
|
|
|
194
194
|
> **Note**: All files included in the `files` field of `package.json` are accessible via CDN.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "domquery-com",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A modern JavaScript library that integrates all features needed for web app development. Optimized for hybrid app/WebView environments.",
|
|
5
5
|
"main": "domquery.js",
|
|
6
6
|
"module": "domquery.js",
|