jqx-es 1.0.0 → 1.0.1
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 +7 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<a href="https://bundlephobia.com/package/
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<img src="https://img.shields.io/npm/v/jqlmodule.svg?labelColor=cb3837&logo=npm&color=dcfdd9"></a>
|
|
2
|
+
<a href="https://bundlephobia.com/package/jqx-es@latest" rel="nofollow">
|
|
3
|
+
<img src="https://badgen.net/bundlephobia/min/jqx-es"></a>
|
|
4
|
+
<a target="_blank" href="https://www.npmjs.com/package/jqx-es">
|
|
5
|
+
<img src="https://img.shields.io/npm/v/jqx-es.svg?labelColor=cb3837&logo=npm&color=dcfdd9"></a>
|
|
7
6
|
</div>
|
|
8
7
|
|
|
9
8
|
## *Work in progress*: migrating (and renaming) from GitHUB JQL to Codeberg JQx
|
|
@@ -22,10 +21,10 @@ The objective is to ***not*** use `prototype` and `this` in the code.
|
|
|
22
21
|
|
|
23
22
|
## Install/Import/Initialize
|
|
24
23
|
|
|
25
|
-
### NPM
|
|
26
|
-
You can install this module
|
|
24
|
+
### NPM
|
|
25
|
+
You can install this module from npm (package *jqx-es*). To create a HTML tree (DOM Object) server side you need a library like [jsdom](https://github.com/jsdom/jsdom).
|
|
27
26
|
```
|
|
28
|
-
npm i
|
|
27
|
+
npm i jqx-es
|
|
29
28
|
```
|
|
30
29
|
|
|
31
30
|
There are *two flavors* of this library. One for scripts with type `module` (or projects with `"type": "module"` in package.json) and one for the browser.
|