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.
Files changed (3) hide show
  1. package/CLI.js +2 -2
  2. package/README.md +44 -0
  3. 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(inp) {
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(inp) {
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
+ ![lakutata](https://socialify.git.ci/lakutata/lakutata/image?description=1&descriptionEditable=An%20IoC-based%20universal%20application%20framework&font=Source%20Code%20Pro&forks=1&language=1&logo=https%3A%2F%2Fraw.githubusercontent.com%2Flakutata%2Flakutata%2Fmain%2Fassets%2Flogo.svg&name=1&pattern=Circuit%20Board&stargazers=1&theme=Auto)
4
+
5
+ </div>
6
+
7
+ <div align="center">
8
+
9
+ ![node-lts](https://img.shields.io/node/v-lts/lakutata?style=for-the-badge&logo=nodedotjs&color=rgb(128%2C189%2C65))
10
+ ![npm](https://img.shields.io/npm/v/lakutata?style=for-the-badge&logo=npm&color=rgb(128%2C189%2C65))
11
+ ![npm](https://img.shields.io/npm/dm/lakutata?style=for-the-badge&logo=npm&color=rgb(128%2C189%2C65))
12
+ ![NPM](https://img.shields.io/npm/l/lakutata?style=for-the-badge&logo=github&color=rgb(128%2C189%2C65))
13
+ ![Codacy grade](https://img.shields.io/codacy/grade/0f16d1c355494415ad7733f8f22f7d36?style=for-the-badge&logo=codacy)
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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lakutata",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "An IoC-based universal application framework.",
5
5
  "main": "./Lakutata.js",
6
6
  "types": "./Lakutata.d.ts",