vaderjs 1.3.3-alpha-112 → 1.3.3-alpha-113
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/package.json +1 -1
- package/vader.js +3 -4
package/package.json
CHANGED
package/vader.js
CHANGED
|
@@ -823,7 +823,8 @@ async function Build() {
|
|
|
823
823
|
</html>
|
|
824
824
|
`;
|
|
825
825
|
|
|
826
|
-
|
|
826
|
+
// generate random but common ports
|
|
827
|
+
let port = Math.floor(Math.random() * (65535 - 49152 + 1) + 49152)
|
|
827
828
|
|
|
828
829
|
const server = http.createServer((req, res) => {
|
|
829
830
|
if (req.url === '/') {
|
|
@@ -1181,11 +1182,9 @@ Vader.js is a reactive framework for building interactive applications for the w
|
|
|
1181
1182
|
Usage: vader <command>
|
|
1182
1183
|
|
|
1183
1184
|
Commands:
|
|
1184
|
-
--watch Watch the pages folder for changes
|
|
1185
|
+
--watch Watch the pages folder for changes and recompile
|
|
1185
1186
|
|
|
1186
1187
|
--build Build the project
|
|
1187
|
-
|
|
1188
|
-
--serve Serve the project on a given port
|
|
1189
1188
|
Learn more about vader: https://vader-js.pages.dev/
|
|
1190
1189
|
|
|
1191
1190
|
`)
|