veryfront 0.0.83 → 0.0.84
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/README.md +16 -29
- package/esm/deno.js +1 -1
- package/esm/src/cli/app/views/dashboard.js +1 -1
- package/esm/src/cli/commands/dev.js +2 -2
- package/esm/src/cli/commands/new.js +1 -1
- package/esm/src/cli/ui/tui.js +1 -1
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/src/cli/app/views/dashboard.ts +1 -1
- package/src/src/cli/commands/dev.ts +2 -2
- package/src/src/cli/commands/new.ts +1 -1
- package/src/src/cli/ui/tui.ts +1 -1
package/README.md
CHANGED
|
@@ -1,38 +1,25 @@
|
|
|
1
|
-
# Veryfront
|
|
1
|
+
# Veryfront Code
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[](https://github.com/veryfront/veryfront-renderer/actions/workflows/ci.yml)
|
|
5
|
-
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
|
|
7
|
-
The all-in-one React framework for building AI-powered applications and agents.
|
|
8
|
-
|
|
9
|
-
## Features
|
|
10
|
-
|
|
11
|
-
- **Zero config** — Auto-discovery from file structure
|
|
12
|
-
- **Multi-runtime** — Deno, Node.js, Bun, Cloudflare Workers
|
|
13
|
-
- **Full-stack React** — SSR, SSG, ISR, streaming
|
|
14
|
-
- **MCP built-in** — Model Context Protocol server
|
|
15
|
-
- **Production-ready** — Rate limiting, caching, observability
|
|
16
|
-
|
|
17
|
-
## Quick Start
|
|
3
|
+
The simplest way to build AI-powered apps.
|
|
18
4
|
|
|
19
5
|
```bash
|
|
20
6
|
npx veryfront
|
|
21
7
|
```
|
|
22
8
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
9
|
+
```
|
|
10
|
+
○ ○ ○ ○ ○ ○ ○
|
|
11
|
+
○ ● ● ● ○ ○ ○ Veryfront Code is running
|
|
12
|
+
○ ● ● ● ○ ○ ○
|
|
13
|
+
○ ● ● ○ ● ● ○ Url http://veryfront.me:3000
|
|
14
|
+
○ ○ ○ ● ● ● ○ Mcp http://veryfront.me:3002/mcp
|
|
15
|
+
○ ○ ○ ● ● ● ○
|
|
16
|
+
○ ○ ○ ○ ○ ○ ○
|
|
17
|
+
|
|
18
|
+
✓ Server ready
|
|
19
|
+
✓ MCP ready
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
One command. Zero config. Just build.
|
|
36
23
|
|
|
37
24
|
## Project Structure
|
|
38
25
|
|
package/esm/deno.js
CHANGED
|
@@ -152,7 +152,7 @@ export function renderDashboardBoxed(state) {
|
|
|
152
152
|
const content = renderDashboard(state);
|
|
153
153
|
return box(content, {
|
|
154
154
|
style: "rounded",
|
|
155
|
-
title: "Veryfront",
|
|
155
|
+
title: "Veryfront Code",
|
|
156
156
|
titleColor: "\x1b[38;2;252;143;93m",
|
|
157
157
|
width: termWidth,
|
|
158
158
|
paddingX: 1,
|
|
@@ -157,8 +157,8 @@ export function devCommand(options) {
|
|
|
157
157
|
const serverUrl = `http://veryfront.me:${finalPort}`;
|
|
158
158
|
console.log();
|
|
159
159
|
console.log(banner({
|
|
160
|
-
title: "Veryfront",
|
|
161
|
-
subtitle: "is
|
|
160
|
+
title: "Veryfront Code",
|
|
161
|
+
subtitle: "is running",
|
|
162
162
|
info: {
|
|
163
163
|
url: serverUrl,
|
|
164
164
|
...(projectSlug ? { project: projectSlug } : {}),
|
|
@@ -102,7 +102,7 @@ export async function newCommand(name, options = {}, env = getRuntimeEnv()) {
|
|
|
102
102
|
exitProcess(1);
|
|
103
103
|
return;
|
|
104
104
|
}
|
|
105
|
-
const tui = createTui({ title: "Veryfront", showLogs: true });
|
|
105
|
+
const tui = createTui({ title: "Veryfront Code", showLogs: true });
|
|
106
106
|
const restore = interceptConsole(tui);
|
|
107
107
|
const localUrl = `http://${name}.veryfront.me:${port}`;
|
|
108
108
|
const prodUrl = `https://${slug}.veryfront.com`;
|
package/esm/src/cli/ui/tui.js
CHANGED
|
@@ -106,7 +106,7 @@ function stopSpinner() {
|
|
|
106
106
|
spinnerInterval = null;
|
|
107
107
|
}
|
|
108
108
|
export function createTui(cfg = {}) {
|
|
109
|
-
config = { title: "Veryfront", showLogs: true, ...cfg };
|
|
109
|
+
config = { title: "Veryfront Code", showLogs: true, ...cfg };
|
|
110
110
|
state = {
|
|
111
111
|
status: "Initializing...",
|
|
112
112
|
statusType: "loading",
|
package/package.json
CHANGED
package/src/deno.js
CHANGED
|
@@ -195,8 +195,8 @@ export function devCommand(options: DevOptions): Promise<DevCommandResult> {
|
|
|
195
195
|
console.log();
|
|
196
196
|
console.log(
|
|
197
197
|
banner({
|
|
198
|
-
title: "Veryfront",
|
|
199
|
-
subtitle: "is
|
|
198
|
+
title: "Veryfront Code",
|
|
199
|
+
subtitle: "is running",
|
|
200
200
|
info: {
|
|
201
201
|
url: serverUrl,
|
|
202
202
|
...(projectSlug ? { project: projectSlug } : {}),
|
|
@@ -154,7 +154,7 @@ export async function newCommand(
|
|
|
154
154
|
return;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
const tui = createTui({ title: "Veryfront", showLogs: true });
|
|
157
|
+
const tui = createTui({ title: "Veryfront Code", showLogs: true });
|
|
158
158
|
const restore = interceptConsole(tui);
|
|
159
159
|
|
|
160
160
|
const localUrl = `http://${name}.veryfront.me:${port}`;
|
package/src/src/cli/ui/tui.ts
CHANGED
|
@@ -149,7 +149,7 @@ export function createTui(cfg: TuiConfig = {}): {
|
|
|
149
149
|
cleanup: () => void;
|
|
150
150
|
render: () => void;
|
|
151
151
|
} {
|
|
152
|
-
config = { title: "Veryfront", showLogs: true, ...cfg };
|
|
152
|
+
config = { title: "Veryfront Code", showLogs: true, ...cfg };
|
|
153
153
|
state = {
|
|
154
154
|
status: "Initializing...",
|
|
155
155
|
statusType: "loading",
|