@trebor/buildhtml 1.0.0 → 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/LICENSE +21 -0
- package/README.md +699 -203
- package/index.js +1309 -201
- package/package.json +38 -37
- package/LICENSE.txt +0 -15
package/package.json
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@trebor/buildhtml",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Zero-dependency, ultra-fast HTML builder for server-side rendering (SSR).",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"files": [
|
|
7
|
-
"index.js",
|
|
8
|
-
"README.md",
|
|
9
|
-
"LICENSE
|
|
10
|
-
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"start": "node example/server.js",
|
|
13
|
-
"test": "node test-debug.js"
|
|
14
|
-
},
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "https://github.com/0trebor0/buildhtml.git"
|
|
18
|
-
},
|
|
19
|
-
"keywords": [
|
|
20
|
-
"ssr",
|
|
21
|
-
"server-side-rendering",
|
|
22
|
-
"javascript",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"html-builder"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@trebor/buildhtml",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Zero-dependency, ultra-fast HTML builder for server-side rendering (SSR).",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"index.js",
|
|
8
|
+
"README.md",
|
|
9
|
+
"LICENSE"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"start": "node example/server.js",
|
|
13
|
+
"test": "node test-debug.js"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/0trebor0/buildhtml.git"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"ssr",
|
|
21
|
+
"server-side-rendering",
|
|
22
|
+
"javascript",
|
|
23
|
+
"nodejs",
|
|
24
|
+
"html-builder"
|
|
25
|
+
],
|
|
26
|
+
"author": "0trebor0 <webdevme@outlook.com>",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=16.0.0"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/0trebor0/buildhtml/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/0trebor0/buildhtml#readme"
|
|
38
|
+
}
|
package/LICENSE.txt
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)
|
|
2
|
-
|
|
3
|
-
Copyright 2026 0trebor0
|
|
4
|
-
|
|
5
|
-
You are free to:
|
|
6
|
-
|
|
7
|
-
- Share — copy and redistribute the material in any medium or format
|
|
8
|
-
- Adapt — remix, transform, and build upon the material
|
|
9
|
-
|
|
10
|
-
Under the following terms:
|
|
11
|
-
|
|
12
|
-
- Attribution — You must give appropriate credit to 0trebor0, provide a link to the license, and indicate if changes were made.
|
|
13
|
-
- NonCommercial — You may not use the material for commercial purposes.
|
|
14
|
-
|
|
15
|
-
Full license text: https://creativecommons.org/licenses/by-nc/4.0/
|