1.0.0 • Published 5 years ago

@orfeo/euridice v1.0.0

Weekly downloads
-
License
AGPL-3.0
Repository
github
Last release
5 years ago

Build Status Coverage Status JavaScript Style Guide

Euridice

Orfeo's reference compiler.

It compiles an Orfeo program to an Eco file.

See http://orfeo.org for more information.

Node Repository

https://www.npmjs.com/package/@orfeo/euridice

Installation

npm install @orfeo/euridice

Tests

Standard Style & Unit Tests

npm test

Unit Tests & Coverage

npm run cover

Usage

const euridice = require('@orfeo/euridice')
const orfeoProgram = '(a b c d)'
const ecoFile = euridice(orfeoProgram)
// ecoFile ->
0 a
0.25 b
0.5 c
0.75 d
1
1.0.0

5 years ago