@ramme-io/create-app 1.0.4 → 1.1.1
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 +11 -13
- package/package.json +2 -2
- package/template/DESIGNER_GUIDE.md +52 -32
- package/template/README.md +33 -38
- package/template/pkg.json +1 -1
- package/template/pnpm-lock.yaml +1790 -0
- package/template/src/components/AIChatWidget.tsx +69 -0
- package/template/src/hooks/useMockChat.ts +69 -0
- package/template/src/hooks/useSignal.ts +73 -0
- package/template/src/pages/AiChat.tsx +40 -54
- package/template/src/pages/Dashboard.tsx +79 -33
- package/template/src/templates/dashboard/DashboardLayout.tsx +24 -8
- package/template/src/types/schema.ts +26 -0
- package/template/src/types/signal.ts +22 -0
package/README.md
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@ramme-io/create-app) [](https://opensource.org/licenses/MIT)
|
|
4
4
|
|
|
5
|
-
**
|
|
5
|
+
**A quick start for prototypes.**
|
|
6
6
|
|
|
7
|
-
This repository is the
|
|
7
|
+
This repository is the scaffolding tool for the Ramme collection. It spins up a standard frontend environment, with the **Ramme UI** component library included.
|
|
8
8
|
|
|
9
|
-
Designed for
|
|
9
|
+
Designed for quick builds, this starter kit standardizes configurations so you can move from concept to interactive prototype in seconds.
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
## Quick Start
|
|
14
14
|
|
|
15
|
-
To
|
|
15
|
+
To spin up a new project, run the initialization command in your terminal. This will generate a new folder with all resources linked and configured.
|
|
16
16
|
|
|
17
17
|
*(Replace `my-new-project` with your desired folder name).*
|
|
18
18
|
|
|
@@ -24,11 +24,11 @@ This single command will:
|
|
|
24
24
|
1. **Scaffold** a high-performance Vite project structure.
|
|
25
25
|
2. **Install** React 19, TypeScript, and Tailwind CSS.
|
|
26
26
|
3. **Configure** the `@ramme-io/ui` component library and design tokens.
|
|
27
|
-
4. **Optimize**
|
|
27
|
+
4. **Optimize** limited configuration for customization.
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
|
-
##
|
|
31
|
+
## Getting Started
|
|
32
32
|
|
|
33
33
|
Once the scaffolding is complete, initialize your local environment:
|
|
34
34
|
|
|
@@ -43,18 +43,18 @@ pnpm install
|
|
|
43
43
|
# or npm install
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
**3.
|
|
46
|
+
**3. Start the dev server**
|
|
47
47
|
```bash
|
|
48
48
|
pnpm run dev
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
Your prototype is now
|
|
51
|
+
Your prototype is now running locally at `http://localhost:5173`.
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
55
55
|
## The Tech Stack
|
|
56
56
|
|
|
57
|
-
This starter kit is
|
|
57
|
+
This starter kit is an opinionated selection of the best open-source tools available:
|
|
58
58
|
|
|
59
59
|
* **Vite:** Next-generation tooling for instant server start and lightning-fast HMR (Hot Module Replacement).
|
|
60
60
|
* **React:** The standard library for building composable user interfaces.
|
|
@@ -64,12 +64,10 @@ This starter kit is not a proprietary framework; it is an opinionated orchestrat
|
|
|
64
64
|
|
|
65
65
|
---
|
|
66
66
|
|
|
67
|
-
##
|
|
68
|
-
|
|
69
|
-
This tool is part of a suite of developer resources maintained by **Excesspool Limited Liability Company**:
|
|
67
|
+
## Project Links
|
|
70
68
|
|
|
71
69
|
* **`@ramme-io/ui`**: The core library of visual primitives.
|
|
72
|
-
* **`@ramme-io/create-app`** (This Repository): The
|
|
70
|
+
* **`@ramme-io/create-app`** (This Repository): The quick start kit.
|
|
73
71
|
|
|
74
72
|
---
|
|
75
73
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ramme-io/create-app",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-ramme-app": "./index.js"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"pack-tarball": "npm pack"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@ramme-io/ui": "^
|
|
19
|
+
"@ramme-io/ui": "^1.1.0",
|
|
20
20
|
"ag-grid-community": "^34.1.2",
|
|
21
21
|
"ag-grid-enterprise": "^34.1.2",
|
|
22
22
|
"ag-grid-react": "^34.1.2",
|
|
@@ -1,57 +1,77 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Ramme App Starter
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@ramme-io/create-app) [](https://opensource.org/licenses/MIT)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**A quick start for prototypes.**
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
This repository is the scaffolding tool for the Ramme collection. It spins up a standard frontend environment, with the **Ramme UI** component library included.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Designed for quick builds, this starter kit standardizes configurations so you can move from concept to interactive prototype in seconds.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
---
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
* **A Code Editor**: We highly recommend using [Visual Studio Code](https://code.visualstudio.com/), as it's free and has excellent support for the technologies in this project.
|
|
13
|
+
## Quick Start
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
To spin up a new project, run the initialization command in your terminal. This will generate a new folder with all resources linked and configured.
|
|
17
16
|
|
|
18
|
-
|
|
17
|
+
*(Replace `my-new-project` with your desired folder name).*
|
|
19
18
|
|
|
20
|
-
|
|
19
|
+
```bash
|
|
20
|
+
npm create @ramme-io/app@latest my-new-project
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
This single command will:
|
|
24
|
+
1. **Scaffold** a high-performance Vite project structure.
|
|
25
|
+
2. **Install** React 19, TypeScript, and Tailwind CSS.
|
|
26
|
+
3. **Configure** the `@ramme-io/ui` component library and design tokens.
|
|
27
|
+
4. **Optimize** limited configuration for customization.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Getting Started
|
|
21
32
|
|
|
33
|
+
Once the scaffolding is complete, initialize your local environment:
|
|
34
|
+
|
|
35
|
+
**1. Enter the project directory**
|
|
22
36
|
```bash
|
|
23
|
-
|
|
37
|
+
cd my-new-project
|
|
24
38
|
```
|
|
25
39
|
|
|
26
|
-
|
|
40
|
+
**2. Install dependencies**
|
|
41
|
+
```bash
|
|
42
|
+
pnpm install
|
|
43
|
+
# or npm install
|
|
44
|
+
```
|
|
27
45
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
46
|
+
**3. Start the dev server**
|
|
47
|
+
```bash
|
|
48
|
+
pnpm run dev
|
|
49
|
+
```
|
|
31
50
|
|
|
32
|
-
|
|
51
|
+
Your prototype is now running locally at `http://localhost:5173`.
|
|
33
52
|
|
|
34
|
-
|
|
53
|
+
---
|
|
35
54
|
|
|
36
|
-
|
|
37
|
-
`npm run dev`
|
|
55
|
+
## The Tech Stack
|
|
38
56
|
|
|
39
|
-
|
|
57
|
+
This starter kit is an opinionated selection of the best open-source tools available:
|
|
40
58
|
|
|
41
|
-
|
|
59
|
+
* **Vite:** Next-generation tooling for instant server start and lightning-fast HMR (Hot Module Replacement).
|
|
60
|
+
* **React:** The standard library for building composable user interfaces.
|
|
61
|
+
* **TypeScript:** Statically typed JavaScript for scalable, robust application logic.
|
|
62
|
+
* **Tailwind CSS:** A utility-first styling engine configured with Ramme design tokens.
|
|
63
|
+
* **@ramme-io/ui:** A pre-installed suite of accessible, unstyled primitives based on Radix UI.
|
|
42
64
|
|
|
43
|
-
|
|
65
|
+
---
|
|
44
66
|
|
|
45
|
-
|
|
46
|
-
* **Side Navigation**: Use the navigation on the left to jump between different pages and categories of components.
|
|
47
|
-
* **Dynamic Theming**: Use the user menu in the top-right header to switch between themes and see how all components instantly adapt to different visual styles (like Dark Mode).
|
|
48
|
-
* **Multi-Template System**: Use the "Dashboard | Docs" toggle in the header to switch between two different application layouts. Notice how the content stays the same, but the entire navigation structure changes.
|
|
67
|
+
## Project Links
|
|
49
68
|
|
|
50
|
-
|
|
69
|
+
* **`@ramme-io/ui`**: The core library of visual primitives.
|
|
70
|
+
* **`@ramme-io/create-app`** (This Repository): The quick start kit.
|
|
51
71
|
|
|
52
|
-
|
|
72
|
+
---
|
|
53
73
|
|
|
54
|
-
|
|
74
|
+
## License
|
|
55
75
|
|
|
56
|
-
|
|
57
|
-
|
|
76
|
+
Copyright © 2025 Excesspool Limited Liability Company.
|
|
77
|
+
This project is licensed under the [MIT License](LICENSE).
|
package/template/README.md
CHANGED
|
@@ -2,81 +2,76 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@ramme-io/create-app) [](https://opensource.org/licenses/MIT)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**A quick start for prototypes.**
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
This repository is the scaffolding tool for the Ramme collection. It spins up a standard frontend environment, with the **Ramme UI** component library included.
|
|
8
|
+
|
|
9
|
+
Designed for quick builds, this starter kit standardizes configurations so you can move from concept to interactive prototype in seconds.
|
|
8
10
|
|
|
9
11
|
---
|
|
10
12
|
|
|
11
|
-
##
|
|
13
|
+
## Quick Start
|
|
12
14
|
|
|
13
|
-
To
|
|
15
|
+
To spin up a new project, run the initialization command in your terminal. This will generate a new folder with all resources linked and configured.
|
|
14
16
|
|
|
15
|
-
*(Replace `
|
|
17
|
+
*(Replace `my-new-project` with your desired folder name).*
|
|
16
18
|
|
|
17
19
|
```bash
|
|
18
|
-
npm create @ramme-io/app@latest
|
|
20
|
+
npm create @ramme-io/app@latest my-new-project
|
|
19
21
|
```
|
|
20
22
|
|
|
21
23
|
This single command will:
|
|
24
|
+
1. **Scaffold** a high-performance Vite project structure.
|
|
25
|
+
2. **Install** React 19, TypeScript, and Tailwind CSS.
|
|
26
|
+
3. **Configure** the `@ramme-io/ui` component library and design tokens.
|
|
27
|
+
4. **Optimize** limited configuration for customization.
|
|
22
28
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
- Install all necessary dependencies, including React, Vite, and @ramme-io/ui.
|
|
26
|
-
|
|
27
|
-
- Set up the recommended folder structure and configuration files.
|
|
28
|
-
|
|
29
|
-
##Post-Installation Steps
|
|
29
|
+
---
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
## Getting Started
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
Once the scaffolding is complete, initialize your local environment:
|
|
34
34
|
|
|
35
|
+
**1. Enter the project directory**
|
|
35
36
|
```bash
|
|
36
|
-
cd
|
|
37
|
+
cd my-new-project
|
|
37
38
|
```
|
|
38
|
-
# 2. Install dependencies
|
|
39
39
|
|
|
40
|
+
**2. Install dependencies**
|
|
40
41
|
```bash
|
|
41
42
|
pnpm install
|
|
43
|
+
# or npm install
|
|
42
44
|
```
|
|
43
|
-
# 3. Start the development server
|
|
44
45
|
|
|
46
|
+
**3. Start the dev server**
|
|
45
47
|
```bash
|
|
46
48
|
pnpm run dev
|
|
47
49
|
```
|
|
48
50
|
|
|
49
|
-
Your
|
|
51
|
+
Your prototype is now running locally at `http://localhost:5173`.
|
|
50
52
|
|
|
51
53
|
---
|
|
52
54
|
|
|
53
|
-
##
|
|
54
|
-
This starter kit is built on a modern, performant tech stack:
|
|
55
|
+
## The Tech Stack
|
|
55
56
|
|
|
56
|
-
|
|
57
|
+
This starter kit is an opinionated selection of the best open-source tools available:
|
|
57
58
|
|
|
58
|
-
* **
|
|
59
|
-
|
|
60
|
-
* **TypeScript:**
|
|
61
|
-
|
|
62
|
-
*
|
|
63
|
-
|
|
64
|
-
* **@ramme-io/ui:** Our own designer-centric component library, pre-installed and ready to use.
|
|
59
|
+
* **Vite:** Next-generation tooling for instant server start and lightning-fast HMR (Hot Module Replacement).
|
|
60
|
+
* **React:** The standard library for building composable user interfaces.
|
|
61
|
+
* **TypeScript:** Statically typed JavaScript for scalable, robust application logic.
|
|
62
|
+
* **Tailwind CSS:** A utility-first styling engine configured with Ramme design tokens.
|
|
63
|
+
* **@ramme-io/ui:** A pre-installed suite of accessible, unstyled primitives based on Radix UI.
|
|
65
64
|
|
|
66
65
|
---
|
|
67
66
|
|
|
68
|
-
##
|
|
69
|
-
The Ramme project is an integrated framework architected across three separate repositories:
|
|
67
|
+
## Project Links
|
|
70
68
|
|
|
71
|
-
*
|
|
72
|
-
|
|
73
|
-
* `ramme-app-starter` (This Repository): A public, open-source starter-kit application that provides the ideal local environment for building with Ramme.
|
|
74
|
-
|
|
75
|
-
* `ramme-app-builder` A hosted SaaS application featuring our AI Prototyping Assistant, which guides users through the strategic A.D.A.P.T. Framework to build applications from a solid strategic foundation.
|
|
69
|
+
* **`@ramme-io/ui`**: The core library of visual primitives.
|
|
70
|
+
* **`@ramme-io/create-app`** (This Repository): The quick start kit.
|
|
76
71
|
|
|
77
72
|
---
|
|
78
73
|
|
|
79
74
|
## License
|
|
80
|
-
This project is licensed under the MIT License.
|
|
81
|
-
|
|
82
75
|
|
|
76
|
+
Copyright © 2025 Excesspool Limited Liability Company.
|
|
77
|
+
This project is licensed under the [MIT License](LICENSE).
|