Install @yell/core via npm, yarn, or pnpm:
npm install @yell/core
yarn add @yell/core
pnpm add @yell/core
For quick prototypes, you can use the CDN build:
<script type="module">
import { parseYAML, createRegistry } from 'https://esm.sh/@yell/core';
</script>
node --version # Should be 18 or higher
npx yell --version # Should output 0.1.0 or higher
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';