@cedarjs/web-server 5.0.3 → 5.0.4-next.167
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/dist/bin.js +30 -48
- package/dist/cliConfig.js +2 -38
- package/dist/cliConfigHandler.js +4 -28
- package/dist/webServer.js +17 -51
- package/package.json +9 -9
package/dist/bin.js
CHANGED
|
@@ -1,37 +1,26 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
"use strict";
|
|
3
|
-
var __create = Object.create;
|
|
4
|
-
var __defProp = Object.defineProperty;
|
|
5
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
2
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
3
|
+
var __esm = (fn, res, err) => function __init() {
|
|
4
|
+
if (err) throw err[0];
|
|
5
|
+
try {
|
|
6
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
7
|
+
} catch (e) {
|
|
8
|
+
throw err = [e], e;
|
|
17
9
|
}
|
|
18
|
-
return to;
|
|
19
10
|
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
11
|
|
|
29
12
|
// src/webServer.ts
|
|
13
|
+
import fs from "node:fs";
|
|
14
|
+
import path from "node:path";
|
|
15
|
+
import ansis from "ansis";
|
|
16
|
+
import Fastify from "fastify";
|
|
17
|
+
import { redwoodFastifyWeb } from "@cedarjs/fastify-web";
|
|
18
|
+
import { getConfig, getPaths } from "@cedarjs/project-config";
|
|
30
19
|
async function serveWeb(options = {}) {
|
|
31
20
|
const start = Date.now();
|
|
32
|
-
console.log(
|
|
33
|
-
const distIndexExists =
|
|
34
|
-
|
|
21
|
+
console.log(ansis.dim.italic("Starting Web Server..."));
|
|
22
|
+
const distIndexExists = fs.existsSync(
|
|
23
|
+
path.join(getPaths().web.dist, "index.html")
|
|
35
24
|
);
|
|
36
25
|
if (!distIndexExists) {
|
|
37
26
|
throw new Error(
|
|
@@ -41,39 +30,32 @@ async function serveWeb(options = {}) {
|
|
|
41
30
|
if (process.env.REDWOOD_WEB_PORT) {
|
|
42
31
|
options.port ??= parseInt(process.env.REDWOOD_WEB_PORT);
|
|
43
32
|
}
|
|
44
|
-
options.port ??=
|
|
33
|
+
options.port ??= getConfig().web.port;
|
|
45
34
|
options.host ??= process.env.REDWOOD_WEB_HOST;
|
|
46
|
-
options.host ??=
|
|
35
|
+
options.host ??= getConfig().web.host;
|
|
47
36
|
options.host ??= process.env.NODE_ENV === "production" ? "0.0.0.0" : "::";
|
|
48
37
|
if (process.env.NODE_ENV === "production" && options.host !== "0.0.0.0") {
|
|
49
38
|
console.warn(
|
|
50
39
|
`Warning: host '${options.host}' may need to be '0.0.0.0' in production for containerized deployments`
|
|
51
40
|
);
|
|
52
41
|
}
|
|
53
|
-
const fastify = (
|
|
42
|
+
const fastify = Fastify({
|
|
54
43
|
requestTimeout: 15e3,
|
|
55
44
|
logger: {
|
|
56
45
|
level: process.env.LOG_LEVEL ?? (process.env.NODE_ENV === "development" ? "debug" : "warn")
|
|
57
46
|
}
|
|
58
47
|
});
|
|
59
|
-
fastify.register(
|
|
48
|
+
fastify.register(redwoodFastifyWeb, { redwood: options });
|
|
60
49
|
const address = await fastify.listen({
|
|
61
50
|
port: options.port,
|
|
62
51
|
host: options.host
|
|
63
52
|
});
|
|
64
|
-
console.log(
|
|
65
|
-
console.log(`Web server listening at ${
|
|
53
|
+
console.log(ansis.dim.italic("Took " + (Date.now() - start) + " ms"));
|
|
54
|
+
console.log(`Web server listening at ${ansis.green(address)}`);
|
|
66
55
|
}
|
|
67
|
-
var import_node_fs, import_node_path, import_ansis, import_fastify, import_fastify_web, import_project_config;
|
|
68
56
|
var init_webServer = __esm({
|
|
69
57
|
"src/webServer.ts"() {
|
|
70
58
|
"use strict";
|
|
71
|
-
import_node_fs = __toESM(require("node:fs"));
|
|
72
|
-
import_node_path = __toESM(require("node:path"));
|
|
73
|
-
import_ansis = __toESM(require("ansis"));
|
|
74
|
-
import_fastify = __toESM(require("fastify"));
|
|
75
|
-
import_fastify_web = require("@cedarjs/fastify-web");
|
|
76
|
-
import_project_config = require("@cedarjs/project-config");
|
|
77
59
|
}
|
|
78
60
|
});
|
|
79
61
|
|
|
@@ -94,11 +76,11 @@ var init_cliConfigHandler = __esm({
|
|
|
94
76
|
});
|
|
95
77
|
|
|
96
78
|
// src/bin.ts
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
79
|
+
import path2 from "path";
|
|
80
|
+
import { config } from "dotenv-defaults";
|
|
81
|
+
import { hideBin } from "yargs/helpers";
|
|
82
|
+
import yargs from "yargs/yargs";
|
|
83
|
+
import { getPaths as getPaths2 } from "@cedarjs/project-config";
|
|
102
84
|
|
|
103
85
|
// src/cliConfig.ts
|
|
104
86
|
var description = "Start a server for serving the web side";
|
|
@@ -129,15 +111,15 @@ function builder(yargs2) {
|
|
|
129
111
|
// src/bin.ts
|
|
130
112
|
init_cliConfigHandler();
|
|
131
113
|
if (!process.env.CEDAR_ENV_FILES_LOADED) {
|
|
132
|
-
|
|
133
|
-
path:
|
|
134
|
-
defaults:
|
|
114
|
+
config({
|
|
115
|
+
path: path2.join(getPaths2().base, ".env"),
|
|
116
|
+
defaults: path2.join(getPaths2().base, ".env.defaults"),
|
|
135
117
|
multiline: true
|
|
136
118
|
});
|
|
137
119
|
process.env.CEDAR_ENV_FILES_LOADED = "true";
|
|
138
120
|
}
|
|
139
121
|
process.env.NODE_ENV ??= "production";
|
|
140
|
-
(
|
|
122
|
+
yargs(hideBin(process.argv)).scriptName("cedar-web-server").alias("h", "help").alias("v", "version").strict().example(
|
|
141
123
|
"yarn $0 --api-url=/api --api-proxy-target=https://api.redwood.horse",
|
|
142
124
|
"Start the web server and proxy requests made to '/api' to 'https://api.redwood.horse'"
|
|
143
125
|
).example(
|
package/dist/cliConfig.js
CHANGED
|
@@ -1,38 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
var cliConfig_exports = {};
|
|
30
|
-
__export(cliConfig_exports, {
|
|
31
|
-
builder: () => builder,
|
|
32
|
-
description: () => description,
|
|
33
|
-
handler: () => handler
|
|
34
|
-
});
|
|
35
|
-
module.exports = __toCommonJS(cliConfig_exports);
|
|
36
1
|
const description = "Start a server for serving the web side";
|
|
37
2
|
function builder(yargs) {
|
|
38
3
|
yargs.options({
|
|
@@ -61,9 +26,8 @@ async function handler(options) {
|
|
|
61
26
|
const { handler: handler2 } = await import("./cliConfigHandler.js");
|
|
62
27
|
await handler2(options);
|
|
63
28
|
}
|
|
64
|
-
|
|
65
|
-
0 && (module.exports = {
|
|
29
|
+
export {
|
|
66
30
|
builder,
|
|
67
31
|
description,
|
|
68
32
|
handler
|
|
69
|
-
}
|
|
33
|
+
};
|
package/dist/cliConfigHandler.js
CHANGED
|
@@ -1,36 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var cliConfigHandler_exports = {};
|
|
20
|
-
__export(cliConfigHandler_exports, {
|
|
21
|
-
handler: () => handler
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(cliConfigHandler_exports);
|
|
24
|
-
var import_webServer = require("./webServer.js");
|
|
1
|
+
import { serveWeb } from "./webServer.js";
|
|
25
2
|
async function handler(options) {
|
|
26
3
|
try {
|
|
27
|
-
await
|
|
4
|
+
await serveWeb(options);
|
|
28
5
|
} catch (error) {
|
|
29
6
|
process.exitCode ||= 1;
|
|
30
7
|
console.error(`Error: ${error.message}`);
|
|
31
8
|
}
|
|
32
9
|
}
|
|
33
|
-
|
|
34
|
-
0 && (module.exports = {
|
|
10
|
+
export {
|
|
35
11
|
handler
|
|
36
|
-
}
|
|
12
|
+
};
|
package/dist/webServer.js
CHANGED
|
@@ -1,47 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
var webServer_exports = {};
|
|
30
|
-
__export(webServer_exports, {
|
|
31
|
-
serveWeb: () => serveWeb
|
|
32
|
-
});
|
|
33
|
-
module.exports = __toCommonJS(webServer_exports);
|
|
34
|
-
var import_node_fs = __toESM(require("node:fs"));
|
|
35
|
-
var import_node_path = __toESM(require("node:path"));
|
|
36
|
-
var import_ansis = __toESM(require("ansis"));
|
|
37
|
-
var import_fastify = __toESM(require("fastify"));
|
|
38
|
-
var import_fastify_web = require("@cedarjs/fastify-web");
|
|
39
|
-
var import_project_config = require("@cedarjs/project-config");
|
|
1
|
+
import fs from "node:fs";
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
import ansis from "ansis";
|
|
4
|
+
import Fastify from "fastify";
|
|
5
|
+
import { redwoodFastifyWeb } from "@cedarjs/fastify-web";
|
|
6
|
+
import { getConfig, getPaths } from "@cedarjs/project-config";
|
|
40
7
|
async function serveWeb(options = {}) {
|
|
41
8
|
const start = Date.now();
|
|
42
|
-
console.log(
|
|
43
|
-
const distIndexExists =
|
|
44
|
-
|
|
9
|
+
console.log(ansis.dim.italic("Starting Web Server..."));
|
|
10
|
+
const distIndexExists = fs.existsSync(
|
|
11
|
+
path.join(getPaths().web.dist, "index.html")
|
|
45
12
|
);
|
|
46
13
|
if (!distIndexExists) {
|
|
47
14
|
throw new Error(
|
|
@@ -51,30 +18,29 @@ async function serveWeb(options = {}) {
|
|
|
51
18
|
if (process.env.REDWOOD_WEB_PORT) {
|
|
52
19
|
options.port ??= parseInt(process.env.REDWOOD_WEB_PORT);
|
|
53
20
|
}
|
|
54
|
-
options.port ??=
|
|
21
|
+
options.port ??= getConfig().web.port;
|
|
55
22
|
options.host ??= process.env.REDWOOD_WEB_HOST;
|
|
56
|
-
options.host ??=
|
|
23
|
+
options.host ??= getConfig().web.host;
|
|
57
24
|
options.host ??= process.env.NODE_ENV === "production" ? "0.0.0.0" : "::";
|
|
58
25
|
if (process.env.NODE_ENV === "production" && options.host !== "0.0.0.0") {
|
|
59
26
|
console.warn(
|
|
60
27
|
`Warning: host '${options.host}' may need to be '0.0.0.0' in production for containerized deployments`
|
|
61
28
|
);
|
|
62
29
|
}
|
|
63
|
-
const fastify = (
|
|
30
|
+
const fastify = Fastify({
|
|
64
31
|
requestTimeout: 15e3,
|
|
65
32
|
logger: {
|
|
66
33
|
level: process.env.LOG_LEVEL ?? (process.env.NODE_ENV === "development" ? "debug" : "warn")
|
|
67
34
|
}
|
|
68
35
|
});
|
|
69
|
-
fastify.register(
|
|
36
|
+
fastify.register(redwoodFastifyWeb, { redwood: options });
|
|
70
37
|
const address = await fastify.listen({
|
|
71
38
|
port: options.port,
|
|
72
39
|
host: options.host
|
|
73
40
|
});
|
|
74
|
-
console.log(
|
|
75
|
-
console.log(`Web server listening at ${
|
|
41
|
+
console.log(ansis.dim.italic("Took " + (Date.now() - start) + " ms"));
|
|
42
|
+
console.log(`Web server listening at ${ansis.green(address)}`);
|
|
76
43
|
}
|
|
77
|
-
|
|
78
|
-
0 && (module.exports = {
|
|
44
|
+
export {
|
|
79
45
|
serveWeb
|
|
80
|
-
}
|
|
46
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/web-server",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4-next.167",
|
|
4
4
|
"description": "CedarJS's server for the Web side",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"directory": "packages/web-server"
|
|
9
9
|
},
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"type": "
|
|
11
|
+
"type": "module",
|
|
12
12
|
"main": "./dist/cliConfig.js",
|
|
13
13
|
"types": "./dist/cliConfig.d.ts",
|
|
14
14
|
"bin": {
|
|
@@ -19,23 +19,23 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "node ./build.mts
|
|
22
|
+
"build": "node ./build.mts",
|
|
23
23
|
"build:pack": "yarn pack -o cedarjs-web-server.tgz",
|
|
24
|
-
"build:types": "tsc --build --verbose",
|
|
24
|
+
"build:types": "tsc --build --verbose ./tsconfig.build.json",
|
|
25
25
|
"build:watch": "nodemon --watch src --ext \"js,jsx,ts,tsx\" --ignore dist --exec \"yarn build && yarn fix:permissions\"",
|
|
26
26
|
"fix:permissions": "chmod +x dist/index.js; chmod +x dist/watch.js",
|
|
27
27
|
"prepublishOnly": "NODE_ENV=production yarn build"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@cedarjs/fastify-web": "5.0.
|
|
31
|
-
"@cedarjs/project-config": "5.0.
|
|
32
|
-
"ansis": "4.
|
|
30
|
+
"@cedarjs/fastify-web": "5.0.4-next.167",
|
|
31
|
+
"@cedarjs/project-config": "5.0.4-next.167",
|
|
32
|
+
"ansis": "4.3.1",
|
|
33
33
|
"dotenv-defaults": "5.0.2",
|
|
34
|
-
"fastify": "5.
|
|
34
|
+
"fastify": "5.10.0",
|
|
35
35
|
"yargs": "17.7.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@cedarjs/framework-tools": "5.0.
|
|
38
|
+
"@cedarjs/framework-tools": "5.0.4-next.167",
|
|
39
39
|
"typescript": "5.9.3"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|