Skip to content

eno-lang/enojs

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

enojs

JavaScript library for parsing, loading and inspecting eno documents

End of life notice

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.

Installation

npm install enojs

Getting started

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!'

Complete documentation and API reference

See eno-lang.org/javascript