@elaraai/create-east 1.0.0 → 1.0.2
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 +25 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @elaraai/create-east
|
|
2
|
+
|
|
3
|
+
Scaffold a new **East** project — AGPL-3.0, Node-only.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm create @elaraai/east my-lib
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
- Pass `.` instead of a name to scaffold into the current directory.
|
|
10
|
+
- Add `-- --install` to install dependencies as part of scaffolding.
|
|
11
|
+
|
|
12
|
+
The generated project is driven by cross-platform npm scripts:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
cd my-lib
|
|
16
|
+
npm install
|
|
17
|
+
npm run build # tsc
|
|
18
|
+
npm run test # build and run tests
|
|
19
|
+
npm run lint
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For a durable-execution project with Python (BSL-1.1, Node + Python), use
|
|
23
|
+
[`@elaraai/create-e3`](https://www.npmjs.com/package/@elaraai/create-e3).
|
|
24
|
+
|
|
25
|
+
Part of the [East](https://github.com/elaraai/east-workspace) ecosystem.
|