All Projects → tweag → Nickel

tweag / Nickel

Licence: mit
Cheap configuration language

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Nickel

myconfig
my Linux Configuration
Stars: ✭ 23 (-93.73%)
Mutual labels:  nix, configuration
Nixos Configs
My NixOS configs
Stars: ✭ 86 (-76.57%)
Mutual labels:  nix, configuration
Jk
Configuration as Code with ECMAScript
Stars: ✭ 322 (-12.26%)
Mutual labels:  configuration
Dotfiles
And I say hey, what's going on?
Stars: ✭ 348 (-5.18%)
Mutual labels:  nix
Dappsys
Composable building blocks for Ethereum contracts
Stars: ✭ 341 (-7.08%)
Mutual labels:  nix
Admiral
Admiral provides automatic configuration generation, syncing and service discovery for multicluster Istio service mesh
Stars: ✭ 323 (-11.99%)
Mutual labels:  configuration
Devos
NixOS Framework
Stars: ✭ 338 (-7.9%)
Mutual labels:  nix
Snack
Nix-based incremental build tool for Haskell projects
Stars: ✭ 317 (-13.62%)
Mutual labels:  nix
Icingaweb2 Module Director
The Director aims to be your new favourite Icinga config deployment tool. Director is designed for those who want to automate their configuration deployment and those who want to grant their “point & click” users easy access to the configuration.
Stars: ✭ 359 (-2.18%)
Mutual labels:  configuration
Chezmoi
Manage your dotfiles across multiple diverse machines, securely.
Stars: ✭ 5,590 (+1423.16%)
Mutual labels:  configuration
Nixos Generators
Collection of image builders [[email protected]]
Stars: ✭ 355 (-3.27%)
Mutual labels:  nix
V2ray Step By Step
This repo is a fork of ToutyRater/v2ray-guide, we aim to provide a new step-by-step guide of v2ray
Stars: ✭ 341 (-7.08%)
Mutual labels:  configuration
Cachix
Command line client for Nix binary cache hosting:
Stars: ✭ 322 (-12.26%)
Mutual labels:  nix
Config
⚙ Config.Net - the easiest configuration framework for .NET developers
Stars: ✭ 349 (-4.9%)
Mutual labels:  configuration
Fiddler Plus
自定义的Fiddler规则,多环境切换、解决跨域开发、快速调试线上代码必备|高效调试分析利器
Stars: ✭ 325 (-11.44%)
Mutual labels:  configuration
Pyhocon
HOCON parser for Python
Stars: ✭ 355 (-3.27%)
Mutual labels:  configuration
Hoplite
A boilerplate-free library for loading configuration files as data classes in Kotlin
Stars: ✭ 322 (-12.26%)
Mutual labels:  configuration
Config
The Config component helps you find, load, combine, autofill and validate configuration values of any kind, whatever their source may be (YAML, XML, INI files, or for instance a database).
Stars: ✭ 3,671 (+900.27%)
Mutual labels:  configuration
Confita
Load configuration in cascade from multiple backends into a struct
Stars: ✭ 344 (-6.27%)
Mutual labels:  configuration
Dapptools
Dapp, Seth, Hevm, and more
Stars: ✭ 362 (-1.36%)
Mutual labels:  nix

Nickel - Cheap configuration language

Nickel is a lightweight configuration language. Its purpose is to automate the generation of static configuration files - think JSON, YAML, XML, or your favorite data representation language - that are then fed to another system. It is designed to have a simple, well-understood core: at its heart, it is JSON with functions. It adds other features on top of it to improve expressivity and modularity, but you can do just fine without using it.

Nickel's important traits are:

  • Lightweight: Nickel aims at being embeddable into other projects. As such, a simple and lightweight minimal interpreter should be reasonably simple to implement. The reference interpreter should also be easily callable from various programming languages.
  • Functional: the basic building blocks are functions. They are first-class citizens, which can be passed around, called and composed.
  • Gradual typing: static types improve code quality, serve as a documentation and eliminate bugs early. On the one hand, code specific to a particular configuration does not depend on external inputs and will always be evaluated to the same value, thus any type error will show up at run time anyway. Also, some JSON can be hard to type. There, types are only a burden. On the other hand, reusable code - that is, functions - is evaluated on potentially infinitely many different inputs, and is impossible to test exhaustively: there, types are precious. Nickel has types, but you get to chose when you want it or not, and it handles safely the interaction between the typed and the untyped world.
  • Contracts: complementary to the type system, contracts are a principled approach to dynamic type checking. They are used internally by the interpreter to insert guards at the boundary between typed and untyped chunks. Nickel makes them available to the programmer as well, to give them the ability to enforce type assertions at runtime in a simple way.
  • Merge system: while the basic computational blocks are functions, the basic data blocks are records (called objects in JSON). Nickel features a merge operation which lets you combine together such records modularly, but also to specify meta-data about the content of these records (documentation, default values, type contracts, etc.), called enriched values.

The motto guiding Nickel's design is:

Great defaults, design for extensibility

There should be a standard, clear path for doing usual things. There should not be arbitrary restrictions which limit you this one day you need to go beyond usual to solve a hard specific problem.

Use cases

Nickel should fit any situation where you need to generate a complex configuration, be it for a software, a machine, a whole infrastructure, or a build system.

The motivating use cases are in particular:

  • The Nix package manager: Nix is a declarative package manager using its own language for specifying packages. Nickel is inspired in part by the Nix language, while trying to overcome some of its limitations. It could be used instead of the Nix language.
  • (Cloud) infrastructure as code: infrastructure is becoming increasingly complex, requiring a rigorous approach to deployment, modification and configuration. This is where a declarative approach also shines, as adopted by Terraform, NixOps or Kubernetes, all requiring potentially complex generation of configuration.
  • Build systems: build systems are yet another piece of software which needs to dynamically generate configuration, the dependency graph for example. Bazel rules may require a powerful language.

Several aforementioned projects have their own dedicated configuration language. See the Related project section for a partial comparison. In general, such specific languages may suffer from feature creep, lack of abstractions or just feel ad-hoc. Some are also totally fine but have just made different design decisions and trade-offs.

Getting started

Build

  1. Clone the repository in a local folder:
$ git clone [email protected]:tweag/nickel.git
$ cd nickel
nickel$
  1. Install build dependencies:

    • With Nix: If you have Nix installed, you can just type
    nickel$ nix-shell shell.nix
    [nix-shell:/tmp/nickel]$
    

    to be dropped in a shell, ready to build.

    • Without Nix: Otherwise, follow this guide to install Rust and Cargo first.
  2. Build Nickel:

nickel$ cargo build

And voilà ! Generated files are placed in target/debug.

Run

  1. (optional) Make a symbolic link to the executable:
nickel$ ln -S nickel target/debug/nickel
  1. Run your first program:
nickel$ ./nickel <<< 'let x = 2 in x + x'
Typechecked: Ok(Types(Dyn))
Done: Num(4.0)

Or load it from a file:

nickel$ echo 'let s = "world" in "Hello, " ++ s' > program.ncl
nickel$ ./nickel < program.ncl
Typechecked: Ok(Types(Dyn))
Done: Str("Hello, world")

By default, Nickel reads from the standard input. It may change in the future.

Tests

nickel$ cargo test

Documentation

  1. Build the doc:
nickel$ cargo doc --no-deps
  1. Open the file target/doc/nickel/index.html in your browser.

Examples

You can find examples in src/examples. Note that as the syntax is not yet fixed, and some basic helpers are missing, they may seem a bit alien currently.

Roadmap

The design is settled and implemented for the most part, but the final syntax and others important practical aspects are still being debated. We aim to transition from an experimental stage to a minimum viable product stage. The next points to deal with are:

Related projects and inspirations

  • Cue is a configuration language with a focus on data validation. It has an original constraint system backed by a solid theory which ensures strong guarantees about your code. It allows for very elegant schema specifications. In return, the cost to pay is to abandon functions and Turing-completeness. Nickel's merge system is inspired by the one of CUE, even if since Nickel does have general functions and is Turing-complete, they are necessarily different.
  • Nix: The Nix language, or Nix expressions, is one of the main inspiration for Nickel. It is a very simple yet powerful lazy functional language. We strive to retain this simplicity, while adding typing capabilities, modularity, and detaching the language from the Nix package manager.
  • Dhall is a statically typed configuration language. It is also inspired by Nix, to which it adds a powerful static type system. However, this forces the programmer to annotate all of their code with types.
  • Jsonnet is another language which could be dubbed as "JSON with functions" (and others things as well). It is a lazy functional language with object oriented features, among which inheritance is similar to Nickel's merge system. One big difference with Nickel is the absence of typing.
  • Pulumi is not a language in itself, but a cloud tool (like Terraform) where you can use your preferred language for describing your infrastructure. This is a different approach to the problem, with different trade-offs.
  • Starlark is the language of Bazel, which is a dialect of Python. It does not have types and recursion is forbidden, making it not Turing-complete.

See RATIONALE.md for the design rationale and a more detailed comparison with a selection of these languages.

License

MIT License.

Copyright (c) Tweag Holding and its affiliates.

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].