---
title: Cookbook
description: 'The fennecs cookbook: install the tiny C# Entity-Component System via NuGet or git and start with hands-on recipes for entities, components, and queries.'
---

# Welcome to the Kitchen

![two fennecs behind a kitchen counter, ready to cook](/img/fennecs-kitchen-transparent.png)

*"Come in, we have cookies & pasta! Let's get you ~~sated~~ started!"*

----------------

# Tippity-tap ...
```shell
dotnet add package fennecs
```
:neofox_laptop: *(psst append, `--prerelease` if you want an alpha/beta build!)*

# ... and go!

```cs
using fennecs;
```

:neofox_surprised_pika:

----------------



::: details I also want the kitchen sink!
Good old git. Nothing beats that!  
::: code-group

```shell [ssh...]
git clone git@github.com:outfox/fennecs.git
```

```shell [no tears now, only https!]
git clone https://github.com/outfox/fennecs.git
```

```shell [wait... you... you... GitHub CLI unironically?]
gh repo clone outfox/fennecs
```

*(repo includes the Appetizers and Example Demos, ready to run!)*

:::
