All Projects → cue-lang → cue

cue-lang / cue

Licence: Apache-2.0 license
The new home of the CUE language! Validate and define text-based and dynamic configuration

Programming Languages

go
31211 projects - #10 most used programming language
CUE
23 projects

Projects that are alternatives of or similar to cue

Kubevious
Kubevious - application centric Kubernetes UI and continuous assurance provider
Stars: ✭ 869 (-64.76%)
Mutual labels:  validation, configuration
Strictyaml
Type-safe YAML parser and validator.
Stars: ✭ 836 (-66.1%)
Mutual labels:  validation, configuration
Node Convict
Featureful configuration management library for Node.js
Stars: ✭ 1,855 (-24.78%)
Mutual labels:  validation, configuration
Andhow
Strongly typed, validated, easy to use Java configuration
Stars: ✭ 17 (-99.31%)
Mutual labels:  validation, configuration
Zaml
The Final Form of configuration files
Stars: ✭ 45 (-98.18%)
Mutual labels:  validation, configuration
Ymate Platform V2
YMP是一个非常简单、易用的轻量级Java应用开发框架,涵盖AOP、IoC、WebMVC、ORM、Validation、Plugin、Serv、Cache等特性,让开发工作像搭积木一样轻松!
Stars: ✭ 106 (-95.7%)
Mutual labels:  validation, configuration
Run Aspnetcore Realworld
E-Commerce real world example of run-aspnetcore ASP.NET Core web application. Implemented e-commerce domain with clean architecture for ASP.NET Core reference application, demonstrating a layered application architecture with DDD best practices. Download 100+ page eBook PDF from here ->
Stars: ✭ 208 (-91.57%)
Mutual labels:  validation, configuration
config-loader
[DEPRECATED] A loader for webpack configuration files
Stars: ✭ 14 (-99.43%)
Mutual labels:  configuration
valify
Validates data in JavaScript in a very simple way
Stars: ✭ 13 (-99.47%)
Mutual labels:  validation
neovim-config
Modern NeoVim config for IDE-like development
Stars: ✭ 89 (-96.39%)
Mutual labels:  configuration
gavel-spec
Behavior specification for Gavel, validator of HTTP transactions
Stars: ✭ 105 (-95.74%)
Mutual labels:  validation
ha-config-ataraxis
My Home Assistant Configs. If you like what you see, please ⭐️my repo. It would encourage me a lot 🤘
Stars: ✭ 146 (-94.08%)
Mutual labels:  configuration
hoc-element-table
📦 A Vue 3.x Table Component built on Webpack 5
Stars: ✭ 26 (-98.95%)
Mutual labels:  configuration
validation
Aplus Framework Validation Library
Stars: ✭ 99 (-95.99%)
Mutual labels:  validation
Manuals-and-Tutorials
Manuals about everything I work with
Stars: ✭ 15 (-99.39%)
Mutual labels:  configuration
profig
Powerful configuration management for Scala (JSON, properties, command-line arguments, and environment variables)
Stars: ✭ 25 (-98.99%)
Mutual labels:  configuration
Events-based-organizational-website
The official codebase for college-based (event managing) organizations. FOUR-LEVEL Authorization system and scalable.
Stars: ✭ 14 (-99.43%)
Mutual labels:  validation
RDMnet
Implementation of ANSI E1.33
Stars: ✭ 29 (-98.82%)
Mutual labels:  configuration
dotfiles
Dotfiles repo
Stars: ✭ 12 (-99.51%)
Mutual labels:  configuration
jsonlint
JSON/CJSON/JSON5 parser, syntax & schema validator and pretty-printer with a command-line client, written in pure JavaScript.
Stars: ✭ 21 (-99.15%)
Mutual labels:  validation

Go Reference Github GolangCI Go 1.17+ platforms

The CUE Data Constraint Language

Configure, Unify, Execute

CUE is an open source data constraint language which aims to simplify tasks involving defining and using data.

It is a superset of JSON, allowing users familiar with JSON to get started quickly.

What is it for?

You can use CUE to

  • define a detailed validation schema for your data (manually or automatically from data)
  • reduce boilerplate in your data (manually or automatically from schema)
  • extract a schema from code
  • generate type definitions and validation code
  • merge JSON in a principled way
  • define and run declarative scripts

How?

CUE merges the notion of schema and data. The same CUE definition can simultaneously be used for validating data and act as a template to reduce boilerplate. Schema definition is enriched with fine-grained value definitions and default values. At the same time, data can be simplified by removing values implied by such detailed definitions. The merging of these two concepts enables many tasks to be handled in a principled way.

Constraints provide a simple and well-defined, yet powerful, alternative to inheritance, a common source of complexity with configuration languages.

CUE Scripting

The CUE scripting layer defines declarative scripting, expressed in CUE, on top of data. This solves three problems: working around the closedness of CUE definitions (we say CUE is hermetic), providing an easy way to share common scripts and workflows for using data, and giving CUE the knowledge of how data is used to optimize validation.

There are many tools that interpret data or use a specialized language for a specific domain (Kustomize, Ksonnet). This solves dealing with data on one level, but the problem it solves may repeat itself at a higher level when integrating other systems in a workflow. CUE scripting is generic and allows users to define any workflow.

Tooling

CUE is designed for automation. Some aspects of this are:

  • convert existing YAML and JSON
  • automatically simplify configurations
  • rich APIs designed for automated tooling
  • formatter
  • arbitrary-precision arithmetic
  • generate CUE templates from source code
  • generate source code from CUE definitions (TODO)

Download and Install

Release builds

Download the latest release from GitHub.

Install using Homebrew

Using Homebrew, you can install using the CUE Homebrew tap:

brew install cue-lang/tap/cue

Install from Source

If you already have Go 1.16 or later installed, the short version is:

go install cuelang.org/go/cmd/cue@latest

This will install the cue command line tool.

For more details see Installing CUE.

Learning CUE

The fastest way to learn the basics is to follow the tutorial on basic language constructs.

A more elaborate tutorial demonstrating of how to convert and restructure an existing set of Kubernetes configurations is available in written form.

References

Contributing

Our canonical Git repository is located at https://review.gerrithub.io/q/project:cue-lang%252Fcue.

To contribute, please read the Contribution Guide.

To report issues or make a feature request, use the issue tracker.

Changes can be contributed using Gerrit or Github pull requests.

Code of Conduct

Guidelines for participating in CUE community spaces and a reporting process for handling issues can be found in the Code of Conduct.

Contact

You can get in touch with the cuelang community in the following ways:


Unless otherwise noted, the CUE source files are distributed under the Apache 2.0 license found in the LICENSE file.

This is not an officially supported Google product.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].