9
9
# Table of Contents
10
10
- [ About] ( #about )
11
11
- [ Getting Started] ( #getting-started )
12
- - [ Clients] ( #clients )
13
- - [ Stack] ( #stack )
12
+ - [ Requirements] ( #requirements )
13
+ - [ Modules] ( #modules )
14
+ - [ Architecture] ( #architecture )
15
+ - [ Compiling] ( #compiling )
16
+ - [ Running] ( #running )
17
+ - [ Packaging] ( #packaging )
14
18
- [ Contribute] ( #contribute )
15
19
16
20
![ From Html to Js through Java] ( illustrations/html_java_js.png )
@@ -36,197 +40,111 @@ We would like to give credit to [jsoup](https://jsoup.org/) / [jsoup GitHub Repo
36
40
37
41
![ How does it work in a nutshell ?] ( illustrations/jsgenerator_intro.png )
38
42
39
- ## Getting Started
43
+ # Getting Started
40
44
41
- ** CLI **
45
+ ## Requirements
42
46
43
- jsgenerator has several options that can be used in a console here is an example of use below
44
-
45
- ``` shell
46
- $ jsgenerator --tty --inline ' <div>I am a <strong>tea pot</strong></div>'
47
-
48
- let div_000 = document.createElement(' div' );
49
- let text_000 = document.createTextNode(` I am a ` );
50
- div_000.appendChild(text_000);
47
+ + JDK 17
48
+ > ** Because we use modern JavaFX**
49
+ >
50
+ > ** NOTE:** For native build (CLI, for eg.), we use GraalVM with JDK 17.
51
+ >
52
+ > Recent versions of GraalVM are not bundling ` native-image ` CLI by default.
53
+ > We are required to install is manually, by running:
54
+ > ``` shell
55
+ > # Where `gu` is an executable bundled with GraalVM
56
+ > gu install native-image
57
+ > ` ` `
58
+ + Maven 4
59
+ > Because of its unique features over maven 3:
60
+ > namely, multi module dependency resolution under common parent, when running a maven goal only on some child
61
+ + Spring 5.3.22
62
+ > A framework to bootstrap dependency injection and inversion of control for our modules
63
+ + Spring Boot 2.7.3
64
+ > Leverage convention over configuration and autoconfiguration discovery to enforce consistent a behaviour
65
+ > throughout our frontends
51
66
52
- let strong_000 = document.createElement(' strong' );
53
- let text_001 = document.createTextNode(` tea pot` );
54
- strong_000.appendChild(text_001);
55
- div_000.appendChild(strong_000);
56
- document.appendChild(div_000);
57
- ```
67
+ # # Modules
58
68
59
- ## Clients
69
+ The project takes advantage of Maven multimodule capabilities to enforce a consistent versioning and releases and,
70
+ the specific Maven 4 features to deliver a seamless developer experience.
60
71
61
- ** CLI**
62
72
` ` ` text
63
- Usage: jsgenerator [-htV] [-e=<extension>] [--inline-pattern=<inlinePattern>]
64
- [-k=<variableDeclaration>] [--path-pattern=<pathPattern>]
65
- [-s=<targetElementSelector>]
66
- [--stdin-pattern=<stdinPattern>]
67
- [--variable-name-generation-strategy=<builtinVariableNameStra
68
- tegy>] [-i=<inlineContents>...]... [<paths>...]
69
- Translating files, stdin or inline from HTML to JS
70
- [<paths>...] file paths to translate content, parsed as HTML
71
- -e, --ext=<extension> output files' extension
72
- -h, --help Show this help message and exit.
73
- -i, --inline=<inlineContents>...
74
- args as HTML content, not files
75
- --inline-pattern=<inlinePattern>
76
- Pattern for inline output filename
77
- -k, --keyword=<variableDeclaration>
78
- variable declaration keyword
79
- --path-pattern=<pathPattern>
80
- pattern for path-based output filenames
81
- -s, --selector=<targetElementSelector>
82
- Target element selector
83
- --stdin-pattern=<stdinPattern>
84
- pattern for stdin output filenames
85
- -t, --tty output to stdin, not files
86
- -V, --version Print version information and exit.
87
- --variable-name-generation-strategy=<builtinVariableNameStrategy>
88
- Variable names generation strategy
73
+ js-generator:
74
+ | - jsgenerator-api
75
+ | - jsgenerator-web
76
+ | - jsgenerator-cli
77
+ \- jsgenerator-desktop
89
78
```
90
79
91
- ** API **
80
+ ## Architecture
92
81
93
- Start it with:
94
- ``` shell
95
- java -jar jsgenerator-api/target/jsgenerator-api-0.0.1-SNAPSHOT.jar
96
- ```
82
+ | THE MODULE | ITS CONTENT && DEPENDENCIES | PACKAGING |
83
+ | ------------------------------------| -------------------------------------| -----------|
84
+ | js-generator | Bill of Material, global properties | POM |
85
+ | jsgenerator-core | Core API, Spring Boot auto-conf | JAR |
86
+ | jsgenerator-slim-api | jsgenerator-core, spring-web | JAR |
87
+ | jsgenerator-slim-cli | jsgenerator-core, picocli | JAR |
88
+ | [ jsgenerator-api] ( ./README.api.md ) | jsgenerator-slim-api | FAT JAR |
89
+ | [ jsgenerator-cli] ( ./README.cli.md ) | jsgenerator-slim-cli | FAT JAR |
97
90
98
- Visit OpenAPI spec. at: [ http://localhost:8080/openapi.yaml ] ( http://localhost:8080/openapi.yaml )
99
-
100
- Visit OpenAPI UI at: [ http://localhost:8080 ] ( http://localhost:8080 )
101
-
102
- > Two endpoints are exposed:
103
- > + ` POST /convert `
104
- > + ` POST /convert/files `
105
- >
106
- > Both accept options as follow:
107
- > ``` json
108
- > {
109
- > "targetElementSelector": ":root > body",
110
- > "pattern": "inline-filename-pattern",
111
- > "variableNameStrategy": "TYPE_BASED",
112
- > "variableDeclaration": "LET",
113
- > "extension": ".extension",
114
- > "contents": [
115
- > "string"
116
- > ]
117
- > }
118
- > ```
119
- > **NOTE:** The `content` field in options is mandatory for `POST /convert` and forbidden for `POST /convert/files`
120
-
121
- Here follow some example with [`httpie`](https://httpie.io/)
122
- > ```json
123
- > { "extension": ".js" } // ./multipart-options.json
124
- > ```
125
- >
126
- > ```html
127
- > <!DOCTYPE html>
128
- > <!-- ./sample.html -->
129
- > <html>
130
- > <head>
131
- > ...
132
- > ...
133
- > ...
134
- > ```
91
+ > ** NOTE:** FAT JAR packaged modules are mere wrappers around slim modules. The separation is important because then,
92
+ > the test modules can use slim JARs as dependencies, unlike FAT JARs. This has to do with how "normal" vs. FAT JARs
93
+ > are laid out.
135
94
136
- ```shell
137
- # You can call the API with multiple **files** and at most one **options**
138
- # Response will be of 'multipart/form-data' content type
139
- http -vf :8080/convert/files \
140
- 'files@./sample.html;type=multipart/form-data' \
141
- 'options@multipart-options.json;type=application/json'
142
-
143
- HTTP/1.1 200
144
- Content-Type: multipart/form-data;boundary=3N0wqEqnb7AC3WD8M1cYYG-vLfHDND_JdE90
145
-
146
- --3N0wqEqnb7AC3WD8M1cYYG-vLfHDND_JdE90
147
- Content-Disposition: form-data; name="0.sample.html.js"
148
- Content-Type: application/octet-stream
149
- Content-Length: 4156
150
-
151
- const targetElement_000 = document.querySelector(`:root > body`);
152
- [... truncated for brievity ]
153
- ```
154
- ``` shell
155
- # You can also pass as many HTML content as you want
156
- # Response will be of 'application/json' content type
157
- http -vf :8080/convert \
158
- extension=' .js' \
159
- contents[]=' <hr/>' \
160
- contents[]=' <button disabled>click me, please :sob:</button>'
161
-
162
- HTTP/1.1 200
163
- Content-Type: application/json
164
-
165
- {
166
- " status" : " SUCCESS"
167
- " content" : [
168
- {
169
- " content" : " const targetElement_000 = document.querySelector(` :root > body` );\r\n\r\n\r\nconst hr_000 = document.createElement('hr');\r\ntargetElement_000.appendChild(hr_000);\r\n" ,
170
- " filename" : " inline.0.js"
171
- },
172
- {
173
- " content" : " const targetElement_001 = document.querySelector(` :root > body` );\r\n\r\n\r\nconst button_000 = document.createElement('button');\r\nbutton_000.setAttribute(` disabled` , ` true` );\r\nconst text_000 = document.createTextNode(` click me, please :sob:` );\r\nbutton_000.appendChild(text_000);\r\ntargetElement_001.appendChild(button_000);\r\n" ,
174
- " filename" : " inline.1.js"
175
- }
176
- ]
177
- }
178
- ```
95
+ ## Compiling
179
96
180
- ** WEB**
97
+ ``` shell
98
+ # Clone the git repository
99
+ git clone git@github.com:osscameroon/js-generator.git
181
100
182
- > *** TODO:** Not yet implemented.*
101
+ # Move at the project root
102
+ cd js-generator
183
103
184
- ** DESKTOP**
104
+ # Compile & test all the modules
105
+ mvn clean test
106
+ ```
185
107
186
- > *** TODO: ** Not yet implemented. *
108
+ ## Running
187
109
188
- ** CODE API**
110
+ > Compiling the whole project before running child modules is advised.
111
+ >
112
+ > To set up you IDE runner, follow this IntelliJ example:
113
+ >
114
+ > ![ ] ( illustrations/intellij-maven-runner-configuration.png )
189
115
190
- > *** TODO:** Not yet implemented.*
191
- > See [ Wiki] ( https://github.com/osscameroon/js-generator/wiki ) .
116
+ API Server
117
+ ``` shell
118
+ # After starting the server, visit http://localhost:8080
119
+ mvn --projects jsgenerator-api spring-boot:run
120
+ ```
192
121
193
- # Stack
122
+ Command Line Interface (CLI)
123
+ ``` shell
124
+ # After reading the help, play out with different CLI options
125
+ mvn --projects jsgenerator-cli spring-boot:run -Dspring-boot.run.arguments=--help
194
126
195
- + JDK 17
196
- > NOTE: For native build (CLI, for eg.), we use GraalVM with JDK 17.
197
- >
198
- > Recent versions of GraalVM are not bundling ` native-image ` CLI by default.
199
- > We are required to install is manually, by running:
200
- > ``` shell
201
- > # Where `gu` is an executable bundled with GraalVM
202
- > gu install native-image
203
- > ` ` `
204
- + Maven 3
205
- + Spring 5.3.22
206
- + Spring Boot 2.7.3
127
+ # For example:
128
+ mvn --projects :jsgenerator-cli spring-boot:run \
129
+ -Dspring-boot.run.arguments=" --tty --inline '<div>I am a <strong>tea pot</strong></div>'"
130
+ ```
207
131
208
- # Contribute
132
+ ## Packaging
209
133
210
134
``` shell
211
- # 1. Clone
212
- git clone git@github.com:osscameroon/js-generator.git
213
-
214
- # 2. Move to root directory
215
- cd js-generator
216
-
217
- # 3. Tests & Build
135
+ # Will compile all the modules into JAR (or FAT JAR - see the table above)
218
136
mvn clean package
219
137
220
- # 4. Build Native CLI (Requires GraalVM JDK 17, and a Linux-friendly shell, like Cmder)
221
- ./cli-build.sh # if provided, first argument will be the file name (useful for version tagging)
222
-
223
- # 5. Browse through code
224
- # 6. Run CLI with --help and play with it
225
- # 7. Fork the project, build, test, open a pull request
138
+ # Additionally, build CLI into native executable (require GraalVM - see requirements above)
139
+ ./cli-build.sh
226
140
```
227
141
142
+ # Contribute
143
+
228
144
All your contributions are welcome!
145
+
229
146
Do not hesitate to open an issue on this repository and/or create a pull request (PR).
147
+
230
148
In order to create a PR, just fork first.
231
149
232
150
** [ We started from the bottom 4 years ago] ( https://github.com/opensourcecameroon/jsGenerator ) , now we are here, we believe we will continue moving forward together 😊.**
0 commit comments