motia 0.10.0-beta.153 → 0.11.0-beta.154
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 +7 -3
- package/dist/cjs/create/index.js +1 -1
- package/dist/cjs/create/templates/nodejs/tutorial/tutorial.tsx.txt +4 -4
- package/dist/cjs/create/templates/python/tutorial/tutorial.tsx.txt +4 -4
- package/dist/esm/create/index.js +1 -1
- package/dist/esm/create/templates/nodejs/tutorial/tutorial.tsx.txt +4 -4
- package/dist/esm/create/templates/python/tutorial/tutorial.tsx.txt +4 -4
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://twitter.com/motiadev)
|
|
7
7
|
[](https://discord.gg/motia)
|
|
8
8
|
|
|
9
|
-
**🔥
|
|
9
|
+
**🔥 Build production-grade backends with a single primitive 🔥**
|
|
10
10
|
|
|
11
11
|
[💡 Motia Manifesto](https://www.motia.dev/manifesto) •
|
|
12
12
|
[🚀 Quick Start](https://www.motia.dev/docs/getting-started/quick-start) •
|
|
@@ -17,9 +17,13 @@
|
|
|
17
17
|
|
|
18
18
|
## 🎯 What is Motia?
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Modern backends shouldn't require juggling frameworks, queues, and services. Motia unifies everything: API endpoints, background jobs, durable workflows, AI agents, streaming, and observability into one runtime with a single core primitive.
|
|
21
21
|
|
|
22
|
-
Motia
|
|
22
|
+
**Motia** is your production-grade backend system that combines:
|
|
23
|
+
- APIs, background jobs, queues, durable workflows, AI agents
|
|
24
|
+
- Built-in state management, streaming, and observability
|
|
25
|
+
- Multi-language support (JavaScript, TypeScript, Python, etc.)
|
|
26
|
+
- All unified around one core primitive: the **Step**
|
|
23
27
|
|
|
24
28
|

|
|
25
29
|
|
package/dist/cjs/create/index.js
CHANGED
|
@@ -26,7 +26,7 @@ const installRequiredDependencies = async (packageManager, rootDir, context) =>
|
|
|
26
26
|
yarn: 'yarn add',
|
|
27
27
|
pnpm: 'pnpm add',
|
|
28
28
|
}[packageManager];
|
|
29
|
-
const dependencies = [`motia@${version_1.version}`, 'zod@
|
|
29
|
+
const dependencies = [`motia@${version_1.version}`, 'zod@4.1.12', ...plugin_dependencies_1.pluginDependencies.map((dep) => `${dep}@${version_1.version}`)].join(' ');
|
|
30
30
|
const devDependencies = ['ts-node@10.9.2', 'typescript@5.7.3', '@types/react@19.1.1'].join(' ');
|
|
31
31
|
try {
|
|
32
32
|
await (0, execute_command_1.executeCommand)(`${installCommand} ${dependencies}`, rootDir);
|
|
@@ -9,10 +9,10 @@ export const steps: TutorialStep[] = [
|
|
|
9
9
|
},
|
|
10
10
|
description: () => (
|
|
11
11
|
<p>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
event
|
|
15
|
-
|
|
12
|
+
Build production-grade backends with a single primitive. Motia unifies APIs, background jobs, queues,
|
|
13
|
+
workflows, and AI agents in one system with built-in state management, streaming, and observability.
|
|
14
|
+
Thanks to its event-driven architecture you can run tasks in parallel, stream data to clients,
|
|
15
|
+
and orchestrate complex flows seamlessly.
|
|
16
16
|
<br />
|
|
17
17
|
<br />
|
|
18
18
|
Let's start with <b>Workbench</b>, it is a development tool provided by Motia's ecosystem, from here you'll be
|
|
@@ -9,10 +9,10 @@ export const steps: TutorialStep[] = [
|
|
|
9
9
|
},
|
|
10
10
|
description: () => (
|
|
11
11
|
<p>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
event
|
|
15
|
-
|
|
12
|
+
Build production-grade backends with a single primitive. Motia unifies APIs, background jobs, queues,
|
|
13
|
+
workflows, and AI agents in one system with built-in state management, streaming, and observability.
|
|
14
|
+
Thanks to its event-driven architecture you can run tasks in parallel, stream data to clients,
|
|
15
|
+
and orchestrate complex flows seamlessly.
|
|
16
16
|
<br />
|
|
17
17
|
<br />
|
|
18
18
|
Let's start with <b>Workbench</b>, it is a development tool provided by Motia's ecosystem, from here you'll be
|
package/dist/esm/create/index.js
CHANGED
|
@@ -20,7 +20,7 @@ const installRequiredDependencies = async (packageManager, rootDir, context) =>
|
|
|
20
20
|
yarn: 'yarn add',
|
|
21
21
|
pnpm: 'pnpm add',
|
|
22
22
|
}[packageManager];
|
|
23
|
-
const dependencies = [`motia@${version}`, 'zod@
|
|
23
|
+
const dependencies = [`motia@${version}`, 'zod@4.1.12', ...pluginDependencies.map((dep) => `${dep}@${version}`)].join(' ');
|
|
24
24
|
const devDependencies = ['ts-node@10.9.2', 'typescript@5.7.3', '@types/react@19.1.1'].join(' ');
|
|
25
25
|
try {
|
|
26
26
|
await executeCommand(`${installCommand} ${dependencies}`, rootDir);
|
|
@@ -9,10 +9,10 @@ export const steps: TutorialStep[] = [
|
|
|
9
9
|
},
|
|
10
10
|
description: () => (
|
|
11
11
|
<p>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
event
|
|
15
|
-
|
|
12
|
+
Build production-grade backends with a single primitive. Motia unifies APIs, background jobs, queues,
|
|
13
|
+
workflows, and AI agents in one system with built-in state management, streaming, and observability.
|
|
14
|
+
Thanks to its event-driven architecture you can run tasks in parallel, stream data to clients,
|
|
15
|
+
and orchestrate complex flows seamlessly.
|
|
16
16
|
<br />
|
|
17
17
|
<br />
|
|
18
18
|
Let's start with <b>Workbench</b>, it is a development tool provided by Motia's ecosystem, from here you'll be
|
|
@@ -9,10 +9,10 @@ export const steps: TutorialStep[] = [
|
|
|
9
9
|
},
|
|
10
10
|
description: () => (
|
|
11
11
|
<p>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
event
|
|
15
|
-
|
|
12
|
+
Build production-grade backends with a single primitive. Motia unifies APIs, background jobs, queues,
|
|
13
|
+
workflows, and AI agents in one system with built-in state management, streaming, and observability.
|
|
14
|
+
Thanks to its event-driven architecture you can run tasks in parallel, stream data to clients,
|
|
15
|
+
and orchestrate complex flows seamlessly.
|
|
16
16
|
<br />
|
|
17
17
|
<br />
|
|
18
18
|
Let's start with <b>Workbench</b>, it is a development tool provided by Motia's ecosystem, from here you'll be
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "motia",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "0.
|
|
3
|
+
"description": "Build production-grade backends with a single primitive. APIs, background jobs, Queues, Workflows, and AI agents - unified in one system with built-in State management, Streaming, and Observability.",
|
|
4
|
+
"version": "0.11.0-beta.154",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"python-ast": "^0.1.0",
|
|
47
47
|
"table": "^6.9.0",
|
|
48
48
|
"ts-node": "^10.9.2",
|
|
49
|
-
"@motiadev/core": "0.
|
|
50
|
-
"@motiadev/
|
|
51
|
-
"@motiadev/
|
|
49
|
+
"@motiadev/core": "0.11.0-beta.154",
|
|
50
|
+
"@motiadev/workbench": "0.11.0-beta.154",
|
|
51
|
+
"@motiadev/stream-client-node": "0.11.0-beta.154"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@amplitude/analytics-types": "^2.9.2",
|