@ti-engine/core 1.0.3 → 1.0.4

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 (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -2,16 +2,16 @@
2
2
  Flexible framework for the creation of microservices with [node.js](https://nodejs.org/).
3
3
 
4
4
  ## introduction
5
- The **@ti-engine/core** is an open source, free to use - both for personal and commercial projects - framework for the creation of microservice-based solutions using **node.js**. The general architectural concept of the framework is based on a standard messenger system that allows certain customization but also provides predictability and traceability of its behavior.
5
+ The **ti-engine** is an open source, free to use - both for personal and commercial projects - framework for the creation of microservice-based solutions using **node.js**. The general architectural concept of the framework is based on a standard messenger system that allows certain customization but also provides predictability and traceability of its behavior.
6
6
 
7
- Being a messenger system, the **@ti-engine/core** relies on a message broker for the actual exchange of messages between microservice instances. The default implementation of the framework uses [Redis](https://redis.io/) cache, however, you could create your own implementation using something like [Rabbit MQ](https://www.rabbitmq.com/). See the [advanced topics](#advanced-topics) section of this documentation for guides on how to do this.
7
+ Being a messenger system, the **ti-engine** relies on a message broker for the actual exchange of messages between microservice instances. The default implementation of the framework uses [Redis](https://redis.io/) cache, however, you could create your own implementation using something like [Rabbit MQ](https://www.rabbitmq.com/). See the [advanced topics](#advanced-topics) section of this documentation for guides on how to do this.
8
8
 
9
9
  Please be aware, that this framework is under active development and will expand in the near future. Also, this documentation is still in the process of being created and refined. Make sure to keep an eye on the changes in case you want to use it in the meantime.
10
10
 
11
11
  ## why ti-engine?
12
12
  The framework is created based on a decade of professional experience with the utilized technologies and architectural approach. It's primary goal is to provide you with a lightweight and flexible solution that can help you build quickly a microservice ecosystem with any degree of size and complexity.
13
13
 
14
- This is what you gain by using ti-engine:
14
+ This is what you gain by using **ti-engine** in your project:
15
15
  * Simplicity - begin productive work within minutes and get to codding you business logic
16
16
  * Flexibility - go as complex as you need to in your implementation
17
17
  * Reliability - message exchange between the services is constantly tracked across the entire ecosystem
@@ -19,7 +19,7 @@ This is what you gain by using ti-engine:
19
19
  * Scalability - serve mullions of requests by multiplying stateless service instances (hardware limitations still apply)
20
20
  * Containerization - go with containers from the very start as the framework is designed to work in such an environment
21
21
 
22
- These are just some benefits **ti-engine** offers. Get to know it to find out more way in which it can help you improve productivity.
22
+ These are just some benefits **ti-engine** offers. Get to know it better to find out more ways in which it can help you improve productivity.
23
23
 
24
24
  ## prerequisites & installation
25
25
  In order to run the basic ti-engine framework you will need a couple of things:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ti-engine/core",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "The ti-engine is an open source, free to use - both for personal and commercial projects - framework for the creation of microservice-based solutions using node.js.",
5
5
  "author": "Boris Kostadinov <kostadinov.boris@gmail.com>",
6
6
  "license": "ISC",
@@ -9,11 +9,11 @@
9
9
  "start": "node ./start-instance.js"
10
10
  },
11
11
  "exports": {
12
+ "./exceptions": "./utils/exceptions.js",
13
+ "./logger": "./utils/logger.js",
12
14
  "./service-consumer": "./components/service-consumer.js",
13
15
  "./service-instance": "./components/service-instance.js",
14
16
  "./service-provider": "./components/service-provider.js",
15
- "./exceptions": "./utils/exceptions.js",
16
- "./logger": "./utils/logger.js",
17
17
  "./tools": "./utils/tools.js"
18
18
  },
19
19
  "imports": {