@alexanderson1993/cooklang-ts
Version:
Cooklang-TS is a TypeScript library for parsing and manipulating Cooklang recipes.
64 lines (50 loc) • 1.98 kB
Markdown
# Cooklang-TS

<div align="center">
Cooklang-TS is a TypeScript library for parsing and manipulating <a href="https://cooklang.org/">Cooklang</a> recipes.
<br><br>
<a href="https://github.com/cooklang/cooklang-ts/actions/workflows/tests.yml"><img src="https://github.com/cooklang/cooklang-ts/actions/workflows/tests.yml/badge.svg?branch=main"></a>
<a href="https://www.npmjs.com/package/@cooklang/cooklang-ts"><img src="https://img.shields.io/npm/v/@cooklang/cooklang-ts"></a>
</div>
## Usage
```typescript
import { Recipe, Parser, getImageURL } from '@cooklang/cooklang-ts';
const source = `
>> source: https://www.dinneratthezoo.com/wprm_print/6796
>> total time: 6 minutes
>> servings: 2
Place the @apple juice{1,5%cups}, @banana{one sliced}, @frozen mixed berries{1,5%cups} and @vanilla greek yogurt{3/4%cup} in a #blender{}; blend until smooth. If the smoothie seems too thick, add a little more liquid (1/4 cup).
Taste and add @honey{} if desired. Pour into two glasses and garnish with fresh berries and mint sprigs if desired.
`;
console.log(new Recipe(source));
// {
// ingredients: [...],
// cookwares: [...],
// metadata: {...},
// steps: [
// [...],
// [...],
// ],
// shoppingList: {},
// }
console.log(new Parser().parse(source).metadata);
// {
// source: 'https://www.dinneratthezoo.com/wprm_print/6796',
// 'total time': '6 minutes',
// servings: '2',
// }
console.log(getImageURL('Mixed Berry Smoothie', {
step: 1,
extension: 'png'
}));
// 'Mixed Berry Smoothie.1.png'
```
## Cooklang Specification
The specification can be found [here](https://cooklang.org/docs/spec/).
## GitHub
The repository can be found [here](https://github.com/cooklang/cooklang-ts).
## Testing
Tests are as found in https://github.com/cooklang/spec/blob/main/tests/canonical.yaml.
```
npm test
```