@asor-studio/asor-core 1.0.5

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/LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ Proprietary / All Rights Reserved
2
+ Copyright (c) 2024 robrosc / asor-studio / asor-core. All rights reserved.
3
+
4
+ NOTICE: All information contained herein is, and remains the property of robrosc / asor-studio / asor-core.
5
+ The intellectual and technical concepts contained herein are proprietary to robrosc / asor-studio / asor-core and may be covered by patents, patents in process, and are protected by trade secret or copyright law.
6
+
7
+ 1. LICENSE GRANT
8
+ Subject to the terms of this Agreement, you are granted a non-exclusive, non-transferable, revocable license to download and use the "asor-core" library (the "Software") solely as a dependency in your software projects.
9
+
10
+ 2. RESTRICTIONS
11
+ You are strictly prohibited from:
12
+ a. Modifying, translating, adapting, or otherwise creating derivative works or improvements, whether or not patentable, of the Software or any part thereof.
13
+ b. Decompiling, disassembling, reverse engineering, or attempting to derive the source code, underlying ideas, algorithms, structure, or organization of the Software.
14
+ c. Redistributing, selling, leasing, licensing, renting, or re-publishing the Software, in whole or in part, including any modified versions or derivative works, on npm, GitHub Packages, or any other public or private registry or repository.
15
+ d. Removing, altering, or obscuring any copyright, trademark, patent, or other intellectual property or proprietary rights notices from the Software.
16
+
17
+ 3. NO WARRANTY
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # @asor-studio/asor-core
2
+
3
+ Core library for ASOR Studio Angular applications, providing essential utilities, base classes, and services for the ASOR Studio ecosystem.
4
+
5
+ ## Mission
6
+
7
+ **ASOR Studio** (*Application Stability & Organizational Research*) focuses on two fundamental pillars of software engineering:
8
+
9
+ 1. **Code Organization**: Leveraging the *Atomic Design* pattern and rigorous separation of concerns to transform disorder into scalable, maintainable structure.
10
+ 2. **Data Conservation**: Ensuring granular data persistence and state consistency that survives navigation and refreshes.
11
+
12
+ The goal is to create an **optimal system** that adapts to developer needs and modern requirements, handling complexity so you can focus on business logic.
13
+
14
+ ## Installation
15
+
16
+ To install the library, run the following command in your Angular project:
17
+
18
+ ```bash
19
+ npm install @asor-studio/asor-core
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ Import the necessary modules or services in your application:
25
+
26
+ ```typescript
27
+ import { ConsoleLogsUtility, StateService } from '@asor-studio/asor-core';
28
+ ```
29
+
30
+ ## License
31
+
32
+ **Proprietary / All Rights Reserved**
33
+
34
+ This software is the property of **robrosc / asor-studio / asor-core**.
35
+
36
+ - **Allowed**: Using this library as a dependency in your software projects.
37
+ - **Prohibited**: Modifying, decompiling, reverse engineering, or redistributing this library.
38
+
39
+ See the [LICENSE](./LICENSE) file for the full license agreement.
40
+
41
+ ## Documentation
42
+
43
+ A comprehensive Wiki will be created to guide you through the usage of the library.