nervatura 5.2.13 → 6.0.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 +23 -20
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
Nervatura
|
|
2
2
|
=========
|
|
3
|
+

|
|
4
|
+
[](https://goreportcard.com/report/github.com/nervatura/nervatura/v6)
|
|
5
|
+
[](https://pkg.go.dev/github.com/nervatura/nervatura/v6)
|
|
6
|
+
[](https://github.com/nervatura/nervatura/releases)
|
|
3
7
|
|
|
4
8
|
Open Source Business Management Framework
|
|
5
9
|
|
|
@@ -15,39 +19,38 @@ The main aspects of its design were:
|
|
|
15
19
|
* support of several database types
|
|
16
20
|
* well documented, easy data management
|
|
17
21
|
|
|
18
|
-
The framework is based on Nervatura Object [**MODEL**](https://nervatura.github.io/nervatura/
|
|
22
|
+
The framework is based on Nervatura Object [**MODEL**](https://nervatura.github.io/nervatura/model) specification. It is a general **open-data model**, which can store all information generated in the operation of a usual corporation.
|
|
19
23
|
|
|
20
|
-
The Nervatura
|
|
24
|
+
The Nervatura is **ready for LLM integration and AI-powered data processing** with a purpose-built, secure and fast built-in [**MCP**](https://nervatura.github.io/nervatura/mcp/) server. [**See how we transformed Nervatura**](https://www.mcp-agency.com/nervatura-case-study) into a ChatGPT-like experience that exposes full service functionality.
|
|
25
|
+
|
|
26
|
+
The Nervatura service is small and fast. A single ~9 MB file contains all the necessary dependencies.
|
|
21
27
|
The framework includes:
|
|
22
|
-
- [**CLI API**](https://nervatura.github.io/nervatura/
|
|
23
|
-
- [**CGO API**](https://nervatura.github.io/nervatura/
|
|
24
|
-
- standard HTTP [**OpenAPI**](https://nervatura.github.io/nervatura/
|
|
25
|
-
- HTTP/2-based [**gRPC API**](https://nervatura.github.io/nervatura/
|
|
26
|
-
-
|
|
28
|
+
- [**CLI API**](https://nervatura.github.io/nervatura/cli/#cli) (command line)
|
|
29
|
+
- [**CGO API**](https://nervatura.github.io/nervatura/cli/#cgo) (C shared library)
|
|
30
|
+
- standard HTTP [**OpenAPI**](https://nervatura.github.io/nervatura/open/) for client communication
|
|
31
|
+
- HTTP/2-based [**gRPC API**](https://nervatura.github.io/nervatura/grpc/) for server-side communication
|
|
32
|
+
- [**MCP**](https://nervatura.github.io/nervatura/mcp/) (Model Context Protocol) for LLM integration
|
|
27
33
|
- built-in database drivers for postgres, mysql, mssql, sqlite databases
|
|
28
34
|
- a basic report generation library for creating simple PDF documents (eg. order, invoice, etc.)
|
|
29
35
|
or CSV data files
|
|
30
|
-
- sample report templates and [**
|
|
31
|
-
- [**
|
|
36
|
+
- sample report templates and [**Report Editor**](https://nervatura.github.io/nervatura/editor/) extension
|
|
37
|
+
- [**Nervatura Client**](https://nervatura.github.io/nervatura/client/) responsive graphical user interface
|
|
32
38
|
|
|
33
|
-
The Nervatura
|
|
39
|
+
The Nervatura Backend is a simple interface layer that provides multiple, well-documented data access protocols for handling data. With their help, we can use the best data access for every development language and environment. Using the functions of the interfaces, we can be sure that the data is always read or written from the databases correctly and simply. The data can be stored in several types of databases, but they can be handled in the same format, and the database types can be easily changed.
|
|
34
40
|
|
|
35
|
-
The Nervatura Service has a modular structure, where most modules are optional. The default service includes all modules, but you [can build a customized service from them](https://nervatura.github.io/nervatura/
|
|
41
|
+
The Nervatura Service has a modular structure, where most modules are optional. The default service includes all modules, but you [can build a customized service from them](https://nervatura.github.io/nervatura/install/#custom).
|
|
36
42
|
|
|
37
|
-
The Nervatura
|
|
43
|
+
The Nervatura Client is a [server-side responsive component](https://github.com/nervatura/component) application. It was created so that all the business data of the framework can be managed immediately after installation through a graphical interface. The client and report interface supports [multilingual interface](https://nervatura.github.io/nervatura/start/#customization).
|
|
38
44
|
|
|
39
|
-
The Nervatura Framework **can be used independently**, but it is basically designed to provide a stable and secure foundation for self-developed, customized enterprise business systems. The framework **can be easily extended** with additional user interfaces or data management functions in **any programming language** or technology. Using the data from the framework, you can easily create your own web stores, user input interfaces or data interfaces for other systems.
|
|
45
|
+
The Nervatura Framework **can be used independently**, but it is basically designed to provide a stable and secure foundation for self-developed, customized enterprise business systems. The framework **can be easily extended** with additional user interfaces or data management functions in **any programming language** or technology. Using the data from the framework, you can easily create your own web stores, user input interfaces or data interfaces for other systems.
|
|
40
46
|
|
|
41
47
|
Nervatura Client supports the business processes that most companies may need. During your own developments, you can only focus on those that really require unique solutions, and you can use the technology that best suits the purpose. This type of development means greater **technological independence and security**, since your self-developed applications are only connected to other systems through well-documented interfaces, so unnecessary external technological dependencies cannot develop.
|
|
42
48
|
|
|
43
|
-
You can find more information about the use of different programming languages and development environments in the [**Examples**](https://nervatura.github.io/nervatura/
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
- [Go and Docker](https://nervatura.github.io/nervatura/docs/start/examples/#go)
|
|
47
|
-
- [PHP and Docker](https://nervatura.github.io/nervatura/docs/start/examples/#php)
|
|
48
|
-
- [Flutter and Dart](https://nervatura.github.io/nervatura/docs/start/examples/#flutter-and-dart)
|
|
49
|
+
You can find more information about the use of different programming languages and development environments in the [**Examples**](https://nervatura.github.io/nervatura/examples/) section (Python, Node.js, Go, PHP).
|
|
50
|
+
|
|
51
|
+
[**Installation**](https://nervatura.github.io/nervatura/install/) and [**Quick Start**](https://nervatura.github.io/nervatura/start/)
|
|
49
52
|
|
|
50
|
-
[**
|
|
53
|
+
[**Upgrade**](https://nervatura.github.io/nervatura/upgrade/) from v5 version to v6.*
|
|
51
54
|
|
|
52
55
|
More info see
|
|
53
56
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nervatura",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Open Source Business Management Framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"business management",
|
|
@@ -47,6 +47,6 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"mkdirp": "^3.0.1",
|
|
49
49
|
"request": "^2.88.2",
|
|
50
|
-
"tar": "^7.
|
|
50
|
+
"tar": "^7.5.2"
|
|
51
51
|
}
|
|
52
52
|
}
|