@gram-data/gram-stringify
TypeScript icon, indicating that this package has built-in type declarations

0.3.11 • Public • Published

From gram AST to text literal (a)-->(b).

How to gram-stringify

Install:

npm install @gram-data/gram-stringify

Build an AST using [[gram-builder]], then pretty print with gram-stringify:

import { node, edge } from '@gram-data/gram-builder';
import { stringify } from '@gram-data/gram-stringify'; 

const left = node('a');
const right = node('b');
const ast = edge([left, right], 'right');

console.log(stringify(ast));

Parse to AST using [[gram-parse]], then pretty print with gram-stringify:

import { toAST } from '@gram-data/gram-parse'; 
import { stringify } from '@gram-data/gram-stringify'; 

const src = '(a)-->(b)';
const ast = toAST(src);

console.log(stringify(ast));

Next Steps

  • Save to a file to share a gram with a friend!

Readme

Keywords

Package Sidebar

Install

npm i @gram-data/gram-stringify

Weekly Downloads

6

Version

0.3.11

License

MIT

Unpacked Size

95.2 kB

Total Files

20

Last publish

Collaborators

  • akollegger