lakutata 0.1.13 → 0.1.15
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/CLI.js +2 -2
- package/README.md +44 -0
- package/package.json +1 -1
package/CLI.js
CHANGED
|
@@ -61438,7 +61438,7 @@ var CommandLineController = class extends _chunkVZLDHNU6js.Controller {
|
|
|
61438
61438
|
const creator = await this.app.get(Create, { options: await this.completer.complete(inp.options) });
|
|
61439
61439
|
await creator.exec();
|
|
61440
61440
|
}
|
|
61441
|
-
async upgrade(
|
|
61441
|
+
async upgrade() {
|
|
61442
61442
|
const upgrade = await this.app.get(Upgrade, this.context);
|
|
61443
61443
|
upgrade.echoCurrentVersion();
|
|
61444
61444
|
const newVersion = await upgrade.checkUpdate();
|
|
@@ -61446,7 +61446,7 @@ var CommandLineController = class extends _chunkVZLDHNU6js.Controller {
|
|
|
61446
61446
|
return upgrade.echoNoUpdateAvailable();
|
|
61447
61447
|
await upgrade.upgradeInstall(newVersion);
|
|
61448
61448
|
}
|
|
61449
|
-
async info(
|
|
61449
|
+
async info() {
|
|
61450
61450
|
const info = await this.app.get(Info, this.context);
|
|
61451
61451
|
info.lines.forEach((line) => console.info(line));
|
|
61452
61452
|
}
|
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<div align="center">
|
|
8
|
+
|
|
9
|
+
)
|
|
10
|
+
)
|
|
11
|
+
)
|
|
12
|
+
)
|
|
13
|
+

|
|
14
|
+
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
## Description
|
|
18
|
+
|
|
19
|
+
Lakutata is a generic development framework written in TypeScript and designed with IoC principles. Its main objective
|
|
20
|
+
is to provide a universal, efficient, and stable development framework. The design goals of Lakutata are not limited to
|
|
21
|
+
web application development; it aims to serve as a foundational framework for desktop applications, embedded systems
|
|
22
|
+
applications, and web applications. The framework primarily adopts an OOP (Object-Oriented Programming) approach and
|
|
23
|
+
encapsulates functionalities such as subprocesses, threads, permission management, and database ORM, enabling the
|
|
24
|
+
framework to be used out of the box.
|
|
25
|
+
|
|
26
|
+
In addition, Lakutata also supports the integration of third-party libraries into the application, allowing developers
|
|
27
|
+
to freely encapsulate and call third-party modules using Lakutata's dependency injection.
|
|
28
|
+
|
|
29
|
+
## Get Started
|
|
30
|
+
|
|
31
|
+
To start using the Lakutata framework, please refer to the framework documentation and examples provided in the link
|
|
32
|
+
below.
|
|
33
|
+
|
|
34
|
+
<div align="center">
|
|
35
|
+
|
|
36
|
+
### Click [Here](docs/Guide.md) to check out the guide.
|
|
37
|
+
|
|
38
|
+
### Click [Here](src/tests) for full example.
|
|
39
|
+
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
Lakutata is [MIT licensed](LICENSE).
|