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 CHANGED
@@ -1,38 +1,25 @@
1
- # Veryfront
1
+ # Veryfront Code
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/veryfront.svg)](https://www.npmjs.com/package/veryfront)
4
- [![CI/CD](https://github.com/veryfront/veryfront-renderer/actions/workflows/ci.yml/badge.svg)](https://github.com/veryfront/veryfront-renderer/actions/workflows/ci.yml)
5
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](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
- ## Commands
24
-
25
- | Command | What it does | When to use |
26
- | ---------------------------- | ---------------------------------- | ---------------------------------------------- |
27
- | `npx veryfront` | Starts TUI dashboard on port 8080 | Explore projects and develop interactively |
28
- | `npx veryfront init` | Create a new project | Start a new Veryfront app from scratch |
29
- | `npx veryfront dev` | Starts dev server on port 3000 | Develop a specific project with HMR |
30
- | `npx veryfront build` | Production build | Prepare app for deployment |
31
- | `npx veryfront deploy` | Deploy to Veryfront Cloud | Ship app to production |
32
- | `npx veryfront --port 3001` | TUI on custom port | Port 8080 is busy |
33
- | `npx veryfront --headless` | Server without TUI | Running in CI or want logs only |
34
- | `npx veryfront doctor` | Check system health | Something isn't working, need diagnostics |
35
- | `npx veryfront --help` | Show all commands | See what's available |
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
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "nodeModulesDir": "auto",
5
5
  "exclude": [
6
6
  "npm/",
@@ -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 now running",
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`;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "veryfront",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "description": "Zero-config React meta-framework for building agentic AI applications",
5
5
  "keywords": [
6
6
  "react",
package/src/deno.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "nodeModulesDir": "auto",
5
5
  "exclude": [
6
6
  "npm/",
@@ -185,7 +185,7 @@ export function renderDashboardBoxed(state: AppState): string {
185
185
 
186
186
  return box(content, {
187
187
  style: "rounded",
188
- title: "Veryfront",
188
+ title: "Veryfront Code",
189
189
  titleColor: "\x1b[38;2;252;143;93m",
190
190
  width: termWidth,
191
191
  paddingX: 1,
@@ -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 now running",
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}`;
@@ -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",