@cratis/arc 22.4.0 → 22.5.0
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 +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Arc is an opinionated CQRS application framework for ASP.NET Core with commands,
|
|
|
4
4
|
|
|
5
5
|
Arc hosts application behavior, executes command and query pipelines, exposes recognized contracts over HTTP, and generates TypeScript clients for them. Its packages also cover observable queries, validation, identity and tenancy, React integration, current-state persistence, OpenAPI, analyzers, and testing. Chronicle event sourcing and Cratis Components are optional integrations.
|
|
6
6
|
|
|
7
|
+
Arc reflects a broader Cratis conviction: application plumbing should not be the hard part. Commands, queries, validation, and authorization are written as plain, idiomatic .NET code, designed to reduce friction and boilerplate in service of productivity, quality, and reliability. Arc is part of one deliberately simple ecosystem — AI-friendly by design, with free [AI skills](https://github.com/Cratis/AI) for building with the stack.
|
|
8
|
+
|
|
7
9
|
[](https://www.nuget.org/packages/Cratis.Arc)
|
|
8
10
|
[](https://www.npmjs.com/package/@cratis/arc)
|
|
9
11
|
[](https://github.com/Cratis/Arc/actions/workflows/dotnet-build.yml)
|
|
@@ -121,6 +123,13 @@ Repository development currently requires the SDK and toolchain versions declare
|
|
|
121
123
|
|
|
122
124
|
Before submitting documentation-only work, verify its links, anchors, and examples explicitly; current automated documentation checks are path-scoped. Source changes must pass the owning repository's applicable build, specification, TypeScript, and documentation gates.
|
|
123
125
|
|
|
126
|
+
* [.NET SDK 10.0.400+](https://dotnet.microsoft.com/en-us/). Arc's analyzers and source generators are built
|
|
127
|
+
against Roslyn 5.9.0, which ships with .NET SDK 10.0.400 and newer. On an older SDK band the compiler
|
|
128
|
+
refuses to load them (CS9057), silently disabling proxy generation and the ARC*/ARCCHR* analyzers.
|
|
129
|
+
Consuming the `Cratis.Arc` packages carries the same floor. Raising this floor is a minor version bump.
|
|
130
|
+
* [Node 23+](https://nodejs.org/en)
|
|
131
|
+
* [Yarn](https://yarnpkg.com)
|
|
132
|
+
|
|
124
133
|
## Community and repository
|
|
125
134
|
|
|
126
135
|
| Path | Destination |
|
|
@@ -129,5 +138,6 @@ Before submitting documentation-only work, verify its links, anchors, and exampl
|
|
|
129
138
|
| Bugs and feature requests | [GitHub Issues](https://github.com/Cratis/Arc/issues) |
|
|
130
139
|
| Releases | [GitHub Releases](https://github.com/Cratis/Arc/releases) |
|
|
131
140
|
| Documentation | [www.cratis.io/arc](https://www.cratis.io/arc/) |
|
|
141
|
+
| Blog | [blog.cratis.io](https://blog.cratis.io) |
|
|
132
142
|
| Security reports | [Private security reporting](mailto:oss@cratis.io?subject=Security%3A) |
|
|
133
143
|
| License | [`LICENSE`](https://github.com/Cratis/Arc/blob/main/LICENSE) |
|