Yell

Installation

Package manager

Install @yell/core via npm, yarn, or pnpm:

npm install @yell/core
yarn add @yell/core
pnpm add @yell/core

Requirements

CDN (quick prototype)

For quick prototypes, you can use the CDN build:

<script type="module">
  import { parseYAML, createRegistry } from 'https://esm.sh/@yell/core';
</script>

Verify installation

node --version  # Should be 18 or higher
npx yell --version  # Should output 0.1.0 or higher

TypeScript

Yell is written in TypeScript. Add it to your project:

npm install --save-dev typescript @types/node
import { parseYAML, createRegistry } from '@yell/core';
import type { YellConfig, ComponentRegistry } from '@yell/core';

Next steps