ermldeprecated

Parser for representing conceptual data models using the Entity-Relationship (ER) modeling concepts

Usage no npm install needed!

<script type="module">
  import erml from 'https://cdn.skypack.dev/erml';
</script>

README

ERML - Entity-Relationship Markup Language

ERML is a super easy-to-write DSL that represents conceptual data models using the Entity-Relationship modeling concepts. What does that gibberish mean? read the docs

Installation and Usage

You can install the ERML parser from NPM or yarn via the commands

npm install erml # From NPM
yarn add erml # From yarn

After that all you have to do is to execute the parser function exported by the library

const ERMLParser = require("erml")
const ast = ERMLParser(`ENTITY Example_entity { SIMPLE "attribute_name" }`)