JavaScript library for parsing, loading and inspecting eno documents
The eno notation language is en route to its final version and enojs will reach end of life by 2020.
enojs is superseded by the enolib (core library) and enotype (type library) packages.
Please visit https://eno-lang.org to read up on all changes.
npm install enojs
Create an eno document, for instance intro.eno
:
Greeting: Hello World!
A minimal example to read this file with enojs
:
const eno = require('enojs');
const fs = require('fs');
const input = fs.readFileSync('intro.eno', 'utf-8');
const document = eno.parse(input);
console.log( document.field('Greeting') ); // prints 'Hello World!'