@azure-net/kit 1.3.3 → 1.3.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.
Files changed (2) hide show
  1. package/README.md +27 -43
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,58 +1,42 @@
1
- # Svelte library
1
+ # Welcome to **@azure-net/kit**
2
2
 
3
- Everything you need to build a Svelte library, powered by [`sv`](https://npmjs.com/package/sv).
3
+ #### [docs](https://svelte.kit.azure-net.ru)
4
4
 
5
- Read more about creating a library [in the docs](https://svelte.dev/docs/kit/packaging).
5
+ **@azure-net/kit** is a universal toolkit and library collection, developed as part of the **Azure-net** ecosystem. It is designed to speed up modern application development, reduce boilerplate code, and maintain a unified project architecture.
6
6
 
7
- ## Creating a project
7
+ ## What is it?
8
8
 
9
- If you're seeing this, you've probably already done this step. Congrats!
9
+ **@azure-net/kit** is much more than just a collection of utilities or components. It is a complete **architecture** (Azure-net Architecture) based on **DDD (Domain-Driven Design)** principles, helping you build scalable and maintainable projects with a clear structure.
10
10
 
11
- ```bash
12
- # create a new project in the current directory
13
- npx sv create
11
+ ## 🚀 What's included?
14
12
 
15
- # create a new project in my-app
16
- npx sv create my-app
17
- ```
13
+ - **Built-in store** flexible and SSR-friendly state management powered by [edges-svelte](https://github.com/Pixel1917/edge-s).
14
+ - **Localization and translation** — ready-to-use i18n solution ([edges-svelte-translations](https://github.com/Pixel1917/edges-svelte-translations)) for multilingual applications.
15
+ - **Extensive utilities** — for working with text, objects, dates, and common tasks.
16
+ - **Data validation** — handy rules and validators.
17
+ - **Reusable base abstractions** — `Repositories`, `Services`, `Providers`, and `Datasources` for quick setup and reuse.
18
+ - **Unified architecture approach** — the package provides a solid project structure and helps enforce consistent development standards.
18
19
 
19
- ## Developing
20
+ ## 🎯 Why use it?
20
21
 
21
- Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
22
+ By using **@azure-net/kit**, you get a ready-to-use project framework that:
22
23
 
23
- ```bash
24
- npm run dev
24
+ - reduces boilerplate code,
25
+ - accelerates development,
26
+ - simplifies testing,
27
+ - supports a clear and predictable architecture.
25
28
 
26
- # or start the server and open the app in a new browser tab
27
- npm run dev -- --open
28
- ```
29
+ This is especially useful for teamwork on medium to large-scale applications.
29
30
 
30
- Everything inside `src/lib` is part of your library, everything inside `src/routes` can be used as a showcase or preview app.
31
+ ## 📚 Learn more
31
32
 
32
- ## Building
33
+ In this guide, you will find:
33
34
 
34
- To build your library:
35
+ - Step-by-step instructions for setup and configuration.
36
+ - Detailed explanations of architectural patterns.
37
+ - Examples of using the built-in store and translation.
38
+ - Recommendations for organizing code with `Repositories`, `Services`, and `Datasources`.
35
39
 
36
- ```bash
37
- npm run package
38
- ```
40
+ ## 🚀 Get started
39
41
 
40
- To create a production version of your showcase app:
41
-
42
- ```bash
43
- npm run build
44
- ```
45
-
46
- You can preview the production build with `npm run preview`.
47
-
48
- > To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
49
-
50
- ## Publishing
51
-
52
- Go into the `package.json` and give your package the desired name through the `"name"` option. Also consider adding a `"license"` field and point it to a `LICENSE` file which you can create from a template (one popular option is the [MIT license](https://opensource.org/license/mit/)).
53
-
54
- To publish your library to [npm](https://www.npmjs.com):
55
-
56
- ```bash
57
- npm publish
58
- ```
42
+ Ready to dive in? Check out the [docs](https://svelte.kit.azure-net.ru) and start building your app faster and more reliably with **Azure-net**.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-net/kit",
3
- "version": "1.3.3",
3
+ "version": "1.3.5",
4
4
  "files": [
5
5
  "dist",
6
6
  "!dist/**/*.test.*",