@cedarjs/web-server 6.0.0-canary.2742 → 6.0.0-canary.2746
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 +24 -47
- package/dist/cliConfig.js +2 -38
- package/dist/cliConfigHandler.js +4 -28
- package/dist/webServer.js +17 -51
- package/package.json +7 -7
package/dist/bin.js
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
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 __getProtoOf = Object.getPrototypeOf;
|
|
8
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
3
|
var __esm = (fn, res, err) => function __init() {
|
|
10
4
|
if (err) throw err[0];
|
|
11
5
|
try {
|
|
@@ -14,29 +8,19 @@ var __esm = (fn, res, err) => function __init() {
|
|
|
14
8
|
throw err = [e], e;
|
|
15
9
|
}
|
|
16
10
|
};
|
|
17
|
-
var __copyProps = (to, from, except, desc) => {
|
|
18
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
19
|
-
for (let key of __getOwnPropNames(from))
|
|
20
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
21
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
22
|
-
}
|
|
23
|
-
return to;
|
|
24
|
-
};
|
|
25
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
26
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
27
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
28
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
29
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
30
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
31
|
-
mod
|
|
32
|
-
));
|
|
33
11
|
|
|
34
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";
|
|
35
19
|
async function serveWeb(options = {}) {
|
|
36
20
|
const start = Date.now();
|
|
37
|
-
console.log(
|
|
38
|
-
const distIndexExists =
|
|
39
|
-
|
|
21
|
+
console.log(ansis.dim.italic("Starting Web Server..."));
|
|
22
|
+
const distIndexExists = fs.existsSync(
|
|
23
|
+
path.join(getPaths().web.dist, "index.html")
|
|
40
24
|
);
|
|
41
25
|
if (!distIndexExists) {
|
|
42
26
|
throw new Error(
|
|
@@ -46,39 +30,32 @@ async function serveWeb(options = {}) {
|
|
|
46
30
|
if (process.env.REDWOOD_WEB_PORT) {
|
|
47
31
|
options.port ??= parseInt(process.env.REDWOOD_WEB_PORT);
|
|
48
32
|
}
|
|
49
|
-
options.port ??=
|
|
33
|
+
options.port ??= getConfig().web.port;
|
|
50
34
|
options.host ??= process.env.REDWOOD_WEB_HOST;
|
|
51
|
-
options.host ??=
|
|
35
|
+
options.host ??= getConfig().web.host;
|
|
52
36
|
options.host ??= process.env.NODE_ENV === "production" ? "0.0.0.0" : "::";
|
|
53
37
|
if (process.env.NODE_ENV === "production" && options.host !== "0.0.0.0") {
|
|
54
38
|
console.warn(
|
|
55
39
|
`Warning: host '${options.host}' may need to be '0.0.0.0' in production for containerized deployments`
|
|
56
40
|
);
|
|
57
41
|
}
|
|
58
|
-
const fastify = (
|
|
42
|
+
const fastify = Fastify({
|
|
59
43
|
requestTimeout: 15e3,
|
|
60
44
|
logger: {
|
|
61
45
|
level: process.env.LOG_LEVEL ?? (process.env.NODE_ENV === "development" ? "debug" : "warn")
|
|
62
46
|
}
|
|
63
47
|
});
|
|
64
|
-
fastify.register(
|
|
48
|
+
fastify.register(redwoodFastifyWeb, { redwood: options });
|
|
65
49
|
const address = await fastify.listen({
|
|
66
50
|
port: options.port,
|
|
67
51
|
host: options.host
|
|
68
52
|
});
|
|
69
|
-
console.log(
|
|
70
|
-
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)}`);
|
|
71
55
|
}
|
|
72
|
-
var import_node_fs, import_node_path, import_ansis, import_fastify, import_fastify_web, import_project_config;
|
|
73
56
|
var init_webServer = __esm({
|
|
74
57
|
"src/webServer.ts"() {
|
|
75
58
|
"use strict";
|
|
76
|
-
import_node_fs = __toESM(require("node:fs"));
|
|
77
|
-
import_node_path = __toESM(require("node:path"));
|
|
78
|
-
import_ansis = __toESM(require("ansis"));
|
|
79
|
-
import_fastify = __toESM(require("fastify"));
|
|
80
|
-
import_fastify_web = require("@cedarjs/fastify-web");
|
|
81
|
-
import_project_config = require("@cedarjs/project-config");
|
|
82
59
|
}
|
|
83
60
|
});
|
|
84
61
|
|
|
@@ -99,11 +76,11 @@ var init_cliConfigHandler = __esm({
|
|
|
99
76
|
});
|
|
100
77
|
|
|
101
78
|
// src/bin.ts
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
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";
|
|
107
84
|
|
|
108
85
|
// src/cliConfig.ts
|
|
109
86
|
var description = "Start a server for serving the web side";
|
|
@@ -134,15 +111,15 @@ function builder(yargs2) {
|
|
|
134
111
|
// src/bin.ts
|
|
135
112
|
init_cliConfigHandler();
|
|
136
113
|
if (!process.env.CEDAR_ENV_FILES_LOADED) {
|
|
137
|
-
|
|
138
|
-
path:
|
|
139
|
-
defaults:
|
|
114
|
+
config({
|
|
115
|
+
path: path2.join(getPaths2().base, ".env"),
|
|
116
|
+
defaults: path2.join(getPaths2().base, ".env.defaults"),
|
|
140
117
|
multiline: true
|
|
141
118
|
});
|
|
142
119
|
process.env.CEDAR_ENV_FILES_LOADED = "true";
|
|
143
120
|
}
|
|
144
121
|
process.env.NODE_ENV ??= "production";
|
|
145
|
-
(
|
|
122
|
+
yargs(hideBin(process.argv)).scriptName("cedar-web-server").alias("h", "help").alias("v", "version").strict().example(
|
|
146
123
|
"yarn $0 --api-url=/api --api-proxy-target=https://api.redwood.horse",
|
|
147
124
|
"Start the web server and proxy requests made to '/api' to 'https://api.redwood.horse'"
|
|
148
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": "6.0.0-canary.
|
|
3
|
+
"version": "6.0.0-canary.2746",
|
|
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": "6.0.0-canary.
|
|
31
|
-
"@cedarjs/project-config": "6.0.0-canary.
|
|
30
|
+
"@cedarjs/fastify-web": "6.0.0-canary.2746",
|
|
31
|
+
"@cedarjs/project-config": "6.0.0-canary.2746",
|
|
32
32
|
"ansis": "4.2.0",
|
|
33
33
|
"dotenv-defaults": "5.0.2",
|
|
34
34
|
"fastify": "5.8.5",
|
|
35
35
|
"yargs": "17.7.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@cedarjs/framework-tools": "6.0.0-canary.
|
|
38
|
+
"@cedarjs/framework-tools": "6.0.0-canary.2746",
|
|
39
39
|
"typescript": "5.9.3"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|